[
  {
    "path": ".changeset/README.md",
    "content": "# Changesets\n\nHello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works\nwith multi-package repos, or single-package repos to help you version and publish your code. You can\nfind the full documentation for it [in our repository](https://github.com/changesets/changesets)\n\nWe have a quick list of common questions to get you started engaging with this project in\n[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)\n"
  },
  {
    "path": ".changeset/config.json",
    "content": "{\n  \"$schema\": \"https://unpkg.com/@changesets/config@3.0.2/schema.json\",\n  \"changelog\": \"@changesets/cli/changelog\",\n  \"commit\": false,\n  \"fixed\": [],\n  \"linked\": [],\n  \"access\": \"restricted\",\n  \"baseBranch\": \"master\",\n  \"updateInternalDependencies\": \"patch\",\n  \"ignore\": []\n}\n"
  },
  {
    "path": ".editorconfig",
    "content": "# EditorConfig is awesome: https://EditorConfig.org\n\n# top-most EditorConfig file\nroot = true\n\n[*]\nindent_style = space\nindent_size = 2\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_whitespace = true\ninsert_final_newline = true"
  },
  {
    "path": ".github/workflows/release.yaml",
    "content": "# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created\n# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages\n\nname: Publish Github Packages\n\non:\n  push:\n    branches:\n      - master\n      \npermissions:\n  contents: write\n  pull-requests: write\n  issues: write\n  id-token: write\n  \njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout Repo\n        uses: actions/checkout@v4\n\n      - uses: pnpm/action-setup@v4\n\n      - uses: actions/setup-node@v4\n        with:\n          node-version: '24'\n          cache: 'pnpm'\n\n      - name: Install dependencies\n        run: pnpm install\n\n      - name: Build Package\n        run: pnpm build\n\n      - name: Build Package\n        run: pnpm test\n\n      - name: Create Release Pull Request or Publish to npm\n        uses: changesets/action@v1\n        with:\n          commit: \"release: bump versions\"\n          title: \"release: bump versions\"\n          publish: pnpm release\n        \n"
  },
  {
    "path": ".gitignore",
    "content": "node_modules/\ndist/\nexample/src/mock.js\nexample/test*.js\n\n.idea/\n.vscode/\n\n*.log\npackage-lock.json\n"
  },
  {
    "path": ".prettierignore",
    "content": "dist\nnode_modules\nbuild\ncoverage\nexample/src/mock.js\nfixture"
  },
  {
    "path": ".prettierrc.js",
    "content": "module.exports = {\n  singleQuote: true,\n  arrowParens: 'avoid',\n  semi: true,\n  printWidth: 120,\n};\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# msw-auto-mock\n\n## 0.32.1\n\n### Patch Changes\n\n- 5ea0a3e: [WIP] Fix reference error for MAX_STRING_LENGTH in generated code\n\n## 0.32.0\n\n### Minor Changes\n\n- a35c1ce: Multiple improvements and fixes since 0.31.0:\n\n  - feat: echo request JSON body into write responses\n  - fix: await response generators in handlers\n  - fix: handle OpenAPI regex patterns and other schema edge cases (date-time, max array length, example $ref)\n  - fix: improve handler ordering and default response selection\n  - chore: AI SDK upgrades and dependency/security updates\n\n## 0.31.0\n\n### Minor Changes\n\n- 02bf90d: Enhance typescript support\n\n## 0.30.0\n\n### Minor Changes\n\n- 83539f8: make next function to api scope instead of global\n\n## 0.29.0\n\n### Minor Changes\n\n- 3d490b8: fix string pattern generation\n\n## 0.28.0\n\n### Minor Changes\n\n- a526bf0: chore: switch to ts project for example and upgrade deps\n\n## 0.27.0\n\n### Minor Changes\n\n- 37b63a0: - chore: switch to pnpm 10.6.1 and fix tests ([#83](https://github.com/zoubingwu/msw-auto-mock/pull/83))\n  - fix: resolve type object allOf recursively ([#69](https://github.com/zoubingwu/msw-auto-mock/pull/69))\n  - Allow for different resource keys than application/json ([#73](https://github.com/zoubingwu/msw-auto-mock/pull/73))\n  - Extend transform string logic to return faker's fromRegExp() if a regexp pattern is provided ([#74](https://github.com/zoubingwu/msw-auto-mock/pull/74))\n  - Change createOpenAI option baseURL source ([#77](https://github.com/zoubingwu/msw-auto-mock/pull/77))\n  - improved the handling of date-time strings and time strings. ([#80](https://github.com/zoubingwu/msw-auto-mock/pull/80))\n\n## 0.26.0\n\n### Minor Changes\n\n- 61df9e8: Added TypeScript file generation option (--typescript) to generate TypeScript files instead of JavaScript files.\n\n## 0.25.0\n\n### Minor Changes\n\n- d03bc3e: Fix generated code for string with max length\n\n## 0.24.0\n\n### Minor Changes\n\n- b2bf101: Fix peer dependency version range\n\n## 0.23.0\n\n### Minor Changes\n\n- 0fb95e1: cache one with static flag for ai mode\n\n## 0.22.0\n\n### Minor Changes\n\n- 8d259bf: Only output ai code when enabled\n\n## 0.21.0\n\n### Minor Changes\n\n- 72829cd: Update faker functions\n\n## 0.20.0\n\n### Minor Changes\n\n- d95b565: Respect min/max constrain for string\n\n## 0.19.0\n\n### Breaking Changes\n\n- Always output to a folder, removed `--node`, `--react-native` options\n\n### Minor Changes\n\n- e2b05fb: Support generate mock data using generative ai, currently support `openai`, `azure` and `anthropic`\n"
  },
  {
    "path": "README.md",
    "content": "# msw-auto-mock\n\n![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/zoubingwu/msw-auto-mock/release.yaml?branch=master)\n![npm](https://img.shields.io/npm/v/msw-auto-mock)\n![npm](https://img.shields.io/npm/dw/msw-auto-mock)\n\nA cli tool to generate random mock data from OpenAPI descriptions for [msw](https://github.com/mswjs/msw).\n\n## Why\n\nWe already have all the type definitions from OpenAPI spec so hand-writing every response resolver is completely unnecessary.\n\n## Generative AI Support\n\nSince v0.19.0, msw-auto-mock can use generative AI to generate mock data instead of faker.\n\nAI is configured via your `package.json` (or any config file supported by cosmiconfig) under the `msw-auto-mock` key:\n\n```json\n{\n  \"msw-auto-mock\": {\n    \"ai\": {\n      \"enable\": true,\n      \"provider\": \"openai\",\n      \"openai\": {\n        \"apiKey\": \"process.env.OPENAI_API_KEY\",\n        \"model\": \"gpt-4o\"\n      }\n    }\n  }\n}\n```\n\n### Providers and Required Fields\n\nCurrently supported providers: `openai`, `azure`, `anthropic`.\n\nWhen `ai.enable` is `true`, you must provide the model/deployment for the selected provider:\n\n- `provider: \"openai\"` requires `ai.openai.model`\n- `provider: \"azure\"` requires `ai.azure.deployment`\n- `provider: \"anthropic\"` requires `ai.anthropic.model`\n\nIf a required field is missing, generation fails fast with a clear error (instead of generating broken code).\n\n### How Config Values Are Interpreted\n\nThe AI config values are strings in JSON, but they are used to generate JavaScript code.\nmsw-auto-mock supports two styles:\n\n- **Expression strings**: values that start with `process.env.` or `import.meta.env.` (or `Deno.env.`) are treated as JavaScript expressions and injected as-is.\n- **Literal strings**: everything else is treated as a string literal and will be automatically quoted in the generated code.\n\nThis means you can write:\n\n- `\"model\": \"gpt-4o\"` (literal string; recommended)\n- `\"apiKey\": \"process.env.OPENAI_API_KEY\"` (expression string)\n\n### Full Type Definition\n\n```ts\ninterface Config {\n  ai?: {\n    enable?: boolean;\n    provider: 'openai' | 'azure' | 'anthropic';\n    openai?: {\n      baseURL?: string;\n      apiKey?: string;\n      model?: string;\n    };\n    azure?: {\n      apiKey?: string;\n      resource?: string;\n      deployment?: string;\n    };\n    anthropic?: {\n      apiKey?: string;\n      model?: string;\n    };\n  };\n}\n```\n\n> [!IMPORTANT]\n> For security, keep API keys in environment variables and reference them via `process.env.*` / `import.meta.env.*` in your config.\n> You no longer need to wrap model names in extra quotes; `\"model\": \"gpt-4o\"` is valid.\n\n## Usage\n\n**This tool also requires @faker-js/faker >= 8 and msw >= 2.**\n\nInstall:\n\n```sh\nyarn add msw-auto-mock @faker-js/faker -D\n```\n\nRead from your OpenAPI descriptions and output generated code:\n\n```sh\n# can be http url or a file path on your machine, support both yaml and json.\nnpx msw-auto-mock http://your_openapi.json -o ./mock\n```\n\nIntegrate with msw, see [Mock Service Worker's doc](https://mswjs.io/docs/getting-started/integrate/browser) for more detail:\n\n```sh\n# Install msw\nyarn add msw --dev\n\n# Init service worker\nnpx msw init public/ --save\n```\n\nThen import those mock definitions in you app entry:\n\n```js\nimport { worker } from './mock/browser.js';\n\nawait worker.start();\n```\n\nFor conditional mocking:\n\n```js\nasync function enableMocking() {\n  if (process.env.NODE_ENV !== 'development') {\n    return;\n  }\n  const { worker } = await import('./mock/browser');\n  // `worker.start()` returns a Promise that resolves\n  // once the Service Worker is up and ready to intercept requests.\n  return worker.start();\n}\n\nfunction mountApp() {\n  const root = createRoot(document.getElementById('root'));\n  root.render(<App />);\n}\n\nenableMocking().then(mountApp);\n```\n\nFor Node.js integration, you can import from `your_output/node.js`:\n\n```js\nimport { worker } from './mock/node.js';\n```\n\nFor React Native integration, you can import from `your_output/native.js`:\n\n```js\nimport { worker } from './mock/native.js';\n```\n\nRun you app then you'll see a successful activation message from Mock Service Worker in your browser's console.\n\n## Options\n\n- `-o, --output`: specify output file path or output to stdout.\n- `-m, --max-array-length <number>`: specify max array length in response, default value is `20`, it'll cost some time if you want to generate a huge chunk of random data.\n- `-t, --includes <keywords>`: specify keywords to match if you want to generate mock data only for certain requests, multiple keywords can be seperated with comma.\n- `-e, --excludes <keywords>`: specify keywords to exclude, multiple keywords can be seperated with comma.\n- `--base-url`: output code with specified base url or fallback to server host specified in OpenAPI.\n- `--static`: By default it will generate dynamic mocks, use this flag if you need it to be static.\n- `-c, --codes <keywords>`: comma separated list of status codes to generate responses for\n- `--typescript`: Generate TypeScript files instead of JavaScript files.\n- `-h, --help`: show help info.\n"
  },
  {
    "path": "bin/cli.js",
    "content": "#! /usr/bin/env node\nrequire('../dist/cli');\n"
  },
  {
    "path": "example/.gitignore",
    "content": "node_modules\n.DS_Store\ndist\ndist-ssr\n*.local\nmock/\n.env\n\npublic/mockServiceWorker.js\n"
  },
  {
    "path": "example/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\" />\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n  <title>Vite App</title>\n</head>\n\n<body>\n  <div id=\"root\"></div>\n  <script type=\"module\" src=\"/src/main.tsx\"></script>\n</body>\n\n</html>"
  },
  {
    "path": "example/package.json",
    "content": "{\n  \"name\": \"example\",\n  \"version\": \"0.0.0\",\n  \"scripts\": {\n    \"dev\": \"vite\",\n    \"build\": \"vite build\",\n    \"preview\": \"vite preview\",\n    \"generate\": \"msw-auto-mock ../test/fixture/test.yaml -o src/mock \"\n  },\n  \"dependencies\": {\n    \"react\": \"^19.0.0\",\n    \"react-dom\": \"^19.0.0\"\n  },\n  \"devDependencies\": {\n    \"@faker-js/faker\": \"9.6.0\",\n    \"@types/react\": \"^19.0.10\",\n    \"@types/react-dom\": \"^19.0.4\",\n    \"@vitejs/plugin-react\": \"5.1.2\",\n    \"msw\": \"2.7.3\",\n    \"msw-auto-mock\": \"workspace:*\",\n    \"typescript\": \"5.5.3\",\n    \"vite\": \"7.3.1\"\n  },\n  \"msw\": {\n    \"workerDirectory\": \"public\"\n  },\n  \"msw-auto-mock\": {\n    \"ai\": {\n      \"enable\": false,\n      \"provider\": \"azure\",\n      \"azure\": {\n        \"apiKey\": \"import.meta.env.VITE_AZURE_API_KEY\",\n        \"resource\": \"import.meta.env.VITE_AZURE_RESOURCE_NAME\",\n        \"deployment\": \"import.meta.env.VITE_AZURE_DEPLOYMENT\"\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "example/src/App.tsx",
    "content": "import { useState } from 'react';\n\nconst methods = ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'HEAD', 'OPTIONS', 'TRACE'];\n\nfunction App() {\n  const [method, setMethod] = useState(methods[0]);\n  const [endpoint, setEndpoint] = useState('/pet/1');\n  const [res, setRes] = useState<unknown>(null);\n  const [status, setStatus] = useState<number | null>(null);\n  const [loading, setLoading] = useState(false);\n\n  return (\n    <div className=\"App\">\n      <h2>API mock playground</h2>\n      <label>Method</label>\n      <select value={method} onChange={e => setMethod(e.target.value)}>\n        {methods.map(i => (\n          <option key={i} value={i}>\n            {i}\n          </option>\n        ))}\n      </select>\n      <br />\n      <label>Endpoint: </label>\n      <input type=\"text\" value={endpoint} onChange={e => setEndpoint(e.target.value)} />\n      <br />\n      <button\n        type=\"button\"\n        onClick={async () => {\n          try {\n            setLoading(true);\n            const res = await fetch(endpoint, { method });\n            setStatus(res.status);\n            const data = await res.json();\n            setRes(data);\n          } catch (e) {\n            setRes(e);\n          } finally {\n            setLoading(false);\n          }\n        }}\n      >\n        fetch\n      </button>\n\n      {loading && <div>Loading...</div>}\n      {status && <div>Status: {status}</div>}\n\n      <pre>\n        <code>{res ? JSON.stringify(res, null, 4) : 'null'}</code>\n      </pre>\n    </div>\n  );\n}\n\nexport default App;\n"
  },
  {
    "path": "example/src/index.css",
    "content": "body {\n  margin: 0;\n  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n    sans-serif;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n  font-size: 11px;\n  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',\n    monospace;\n}\n"
  },
  {
    "path": "example/src/main.tsx",
    "content": "import './index.css';\nimport { createRoot } from 'react-dom/client';\nimport App from './App';\n\nasync function enableMocking() {\n  const { worker } = await import('./mock/browser');\n  // `worker.start()` returns a Promise that resolves\n  // once the Service Worker is up and ready to intercept requests.\n  return worker.start();\n}\n\nfunction mountApp() {\n  const root = createRoot(document.getElementById('root')!);\n  root.render(<App />);\n}\n\nenableMocking().then(mountApp);\n"
  },
  {
    "path": "example/src/vite-env.d.ts",
    "content": "/// <reference types=\"vite/client\" />\n"
  },
  {
    "path": "example/tsconfig.app.json",
    "content": "{\n  \"compilerOptions\": {\n    \"tsBuildInfoFile\": \"./node_modules/.tmp/tsconfig.app.tsbuildinfo\",\n    \"target\": \"ES2020\",\n    \"useDefineForClassFields\": true,\n    \"lib\": [\"ES2020\", \"DOM\", \"DOM.Iterable\"],\n    \"module\": \"ESNext\",\n    \"skipLibCheck\": true,\n\n    /* Bundler mode */\n    \"moduleResolution\": \"bundler\",\n    \"allowImportingTsExtensions\": true,\n    \"isolatedModules\": true,\n    \"moduleDetection\": \"force\",\n    \"noEmit\": true,\n    \"jsx\": \"react-jsx\",\n\n    /* Linting */\n    \"strict\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noUncheckedSideEffectImports\": true\n  },\n  \"include\": [\"src\"]\n}\n"
  },
  {
    "path": "example/tsconfig.json",
    "content": "{\n  \"files\": [],\n  \"references\": [\n    { \"path\": \"./tsconfig.app.json\" },\n    { \"path\": \"./tsconfig.node.json\" }\n  ]\n}\n"
  },
  {
    "path": "example/tsconfig.node.json",
    "content": "{\n  \"compilerOptions\": {\n    \"tsBuildInfoFile\": \"./node_modules/.tmp/tsconfig.node.tsbuildinfo\",\n    \"target\": \"ES2022\",\n    \"lib\": [\"ES2023\"],\n    \"module\": \"ESNext\",\n    \"skipLibCheck\": true,\n\n    /* Bundler mode */\n    \"moduleResolution\": \"bundler\",\n    \"allowImportingTsExtensions\": true,\n    \"isolatedModules\": true,\n    \"moduleDetection\": \"force\",\n    \"noEmit\": true,\n\n    /* Linting */\n    \"strict\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noUncheckedSideEffectImports\": true\n  },\n  \"include\": [\"vite.config.ts\"]\n}\n"
  },
  {
    "path": "example/vite.config.mjs",
    "content": "import { defineConfig } from \"vite\";\nimport react from \"@vitejs/plugin-react\";\n\n// https://vitejs.dev/config/\nexport default defineConfig({\n  plugins: [react()],\n});\n"
  },
  {
    "path": "lefthook.yml",
    "content": "# EXAMPLE USAGE:\n#\n#   Refer for explanation to following link:\n#   https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md\n#\n# pre-push:\n#   commands:\n#     packages-audit:\n#       tags: frontend security\n#       run: yarn audit\n#     gems-audit:\n#       tags: backend security\n#       run: bundle audit\n#\npre-commit:\n  parallel: true\n  commands:\n    prettier:\n      glob: \"*.{js,ts,jsx,tsx}\"\n      run: pnpx prettier --write {staged_files}\n      stage_fixed: true\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"msw-auto-mock\",\n  \"version\": \"0.32.1\",\n  \"description\": \"Generate random mock data from OpenAPI descriptions for msw.\",\n  \"main\": \"dist/cli.js\",\n  \"bin\": {\n    \"msw-auto-mock\": \"./bin/cli.js\"\n  },\n  \"scripts\": {\n    \"build\": \"tsup\",\n    \"fmt\": \"prettier {example,src}/**/*.{js,jsx,ts,tsx,css,md,html} --write\",\n    \"test\": \"vitest run\",\n    \"changeset\": \"changeset\",\n    \"release\": \"changeset publish\"\n  },\n  \"author\": \"zoubingwu<zoubingwu@gmail.com>\",\n  \"license\": \"MIT\",\n  \"dependencies\": {\n    \"@ai-sdk/anthropic\": \"3.0.31\",\n    \"@ai-sdk/azure\": \"3.0.24\",\n    \"@ai-sdk/openai\": \"3.0.23\",\n    \"@apidevtools/swagger-parser\": \"10.1.0\",\n    \"ai\": \"6.0.62\",\n    \"cac\": \"6.7.14\",\n    \"cosmiconfig\": \"9.0.0\",\n    \"lodash\": \"4.17.23\",\n    \"prettier\": \"3.3.2\",\n    \"swagger2openapi\": \"7.0.8\",\n    \"ts-pattern\": \"5.2.0\"\n  },\n  \"devDependencies\": {\n    \"@changesets/cli\": \"2.29.8\",\n    \"@types/lodash\": \"4.17.6\",\n    \"@types/node\": \"20.19.30\",\n    \"lefthook\": \"1.6.18\",\n    \"msw\": \"2.7.3\",\n    \"oazapfts\": \"6.1.0\",\n    \"openapi-types\": \"12.1.3\",\n    \"tsup\": \"8.5.1\",\n    \"typescript\": \"5.5.3\",\n    \"vitest\": \"4.0.18\",\n    \"zod\": \"^3.25.76\"\n  },\n  \"peerDependencies\": {\n    \"@faker-js/faker\": \">=8\",\n    \"msw\": \">=2\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/zoubingwu/msw-auto-mock.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/zoubingwu/msw-auto-mock/issues\"\n  },\n  \"homepage\": \"https://github.com/zoubingwu/msw-auto-mock\",\n  \"files\": [\n    \"dist\"\n  ],\n  \"keywords\": [\n    \"msw\",\n    \"mock\",\n    \"service-worker\",\n    \"openapi\"\n  ],\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"pnpm\": {\n    \"overrides\": {\n      \"js-yaml@3.14.1\": \"3.14.2\",\n      \"js-yaml@4.1.0\": \"4.1.1\"\n    }\n  },\n  \"packageManager\": \"pnpm@10.6.1\"\n}\n"
  },
  {
    "path": "pnpm-workspace.yaml",
    "content": "packages:\n  - example\n  - .\nonlyBuiltDependencies:\n  - msw\n"
  },
  {
    "path": "scripts/changelog.sh",
    "content": "#!/bin/bash\n\n# Get the repository URL from package.json\nREPO_URL=$(node -e \"console.log(require('./package.json').repository.url.replace(/\\.git$/, ''))\")\n\n# Fetch all tags\ngit fetch --all --tags\n\n# Get the last tag\nLAST_TAG=$(git describe --tags --abbrev=0)\n\n# Generate and store changelog\nCHANGELOG=$(git log ${LAST_TAG}..HEAD --pretty=format:\"- %s\" | \\\n  sed -E \"s|#([0-9]+)|[#\\1](${REPO_URL}/pull/\\1)|g\")\n\n# Print to terminal\necho \"Changelog since ${LAST_TAG}:\"\necho \"$CHANGELOG\"\necho\n\n# Copy to clipboard\necho \"$CHANGELOG\" | pbcopy\n\necho \"Changelog has been copied to clipboard!\"\n"
  },
  {
    "path": "src/cli.ts",
    "content": "import cac from 'cac';\n\nimport { generate } from './generate';\nimport { version } from '../package.json';\n\nconst cli = cac();\n\ncli\n  .command(\n    '<spec>',\n    'Generate MSW mock definitions from an OpenAPI spec (faker by default; generative AI optional via config).',\n  )\n  .option('-o, --output <directory>', `Output to a folder.`)\n  .option('-m, --max-array-length <number>', `Max array length, default to 20.`)\n  .option('-t, --includes <keywords>', `Include the request path with given string, can be seperated with comma.`)\n  .option('-e, --excludes <keywords>', `Exclude the request path with given string, can be seperated with comma.`)\n  .option('--base-url [baseUrl]', `Use the one you specified or server url in OpenAPI description as base url.`)\n  .option('--static', 'By default it will generate dynamic mocks, use this flag if you want generate static mocks.')\n  .option('-c, --codes <keywords>', 'Comma separated list of status codes to generate responses for')\n  .option('--typescript', 'Generate TypeScript files instead of JavaScript files')\n  .option('--echo-request-body', 'Merge JSON request body into JSON response body for write requests (POST/PUT/PATCH)')\n  .example('msw-auto-mock ./githubapi.yaml -o mock.js')\n  .example('msw-auto-mock ./githubapi.yaml -o mock.js -t /admin,/repo -m 30')\n  .example('msw-auto-mock ./githubapi.yaml -o mock.js --typescript')\n  .example(\n    'package.json: { \"msw-auto-mock\": { \"ai\": { \"enable\": true, \"provider\": \"openai\", \"openai\": { \"apiKey\": \"process.env.OPENAI_API_KEY\", \"model\": \"gpt-4o\" } } } }',\n  )\n  .action(async (spec, options) => {\n    await generate(spec, options).catch(console.error);\n  });\n\ncli.help();\ncli.version(version);\n\ncli.parse();\n"
  },
  {
    "path": "src/generate.ts",
    "content": "import * as fs from 'node:fs';\nimport * as path from 'node:path';\n\nimport ApiGenerator, { isReference } from 'oazapfts/generate';\nimport { OpenAPIV3 } from 'openapi-types';\nimport camelCase from 'lodash/camelCase';\nimport { cosmiconfig } from 'cosmiconfig';\n\nimport { getV3Doc } from './swagger';\nimport { prettify, toExpressLikePath } from './utils';\nimport { Operation } from './transform';\nimport { browserIntegration, mockTemplate, nodeIntegration, reactNativeIntegration } from './template';\nimport { CliOptions, ConfigOptions } from './types';\nimport { name as moduleName } from '../package.json';\n\nexport function generateOperationCollection(apiDoc: OpenAPIV3.Document, options: CliOptions) {\n  const apiGen = new ApiGenerator(apiDoc, {});\n  const operationDefinitions = getOperationDefinitions(apiDoc);\n\n  return operationDefinitions\n    .filter(op => operationFilter(op, options))\n    .map(op => codeFilter(op, options))\n    .map(definition => toOperation(definition, apiGen));\n}\n\nexport async function generate(spec: string, inlineOptions: CliOptions) {\n  const explorer = cosmiconfig(moduleName);\n  const finalOptions: ConfigOptions = { ...inlineOptions };\n\n  try {\n    const result = await explorer.search();\n    if (!result?.isEmpty) {\n      Object.assign(finalOptions, result?.config);\n    }\n  } catch (e) {\n    console.log(e);\n    process.exit(1);\n  }\n\n  const { output: outputFolder } = finalOptions;\n  const targetFolder = path.resolve(process.cwd(), outputFolder);\n\n  const fileExt = finalOptions.typescript ? '.ts' : '.js';\n\n  let code: string;\n  const apiDoc = await getV3Doc(spec);\n  const operationCollection = generateOperationCollection(apiDoc, finalOptions);\n\n  let baseURL = '';\n  if (finalOptions.baseUrl === true) {\n    baseURL = getServerUrl(apiDoc);\n  } else if (typeof finalOptions.baseUrl === 'string') {\n    baseURL = finalOptions.baseUrl;\n  }\n\n  code = mockTemplate(operationCollection, baseURL, finalOptions);\n\n  try {\n    fs.mkdirSync(targetFolder);\n  } catch {}\n\n  fs.writeFileSync(path.resolve(process.cwd(), targetFolder, `native${fileExt}`), reactNativeIntegration);\n  fs.writeFileSync(path.resolve(process.cwd(), targetFolder, `node${fileExt}`), nodeIntegration);\n  fs.writeFileSync(path.resolve(process.cwd(), targetFolder, `browser${fileExt}`), browserIntegration);\n  fs.writeFileSync(\n    path.resolve(process.cwd(), targetFolder, `handlers${fileExt}`),\n    await prettify(`handlers${fileExt}`, code),\n  );\n}\n\nfunction getServerUrl(apiDoc: OpenAPIV3.Document) {\n  let server = apiDoc.servers?.at(0);\n  let url = '';\n  if (server) {\n    url = server.url;\n  }\n  if (server?.variables) {\n    Object.entries(server.variables).forEach(([key, value]) => {\n      url = url.replace(`{${key}}`, value.default);\n    });\n  }\n\n  return url;\n}\n\nconst operationKeys = Object.values(OpenAPIV3.HttpMethods) as OpenAPIV3.HttpMethods[];\n\ntype OperationDefinition = {\n  path: string;\n  verb: string;\n  responses: OpenAPIV3.ResponsesObject;\n  id: string;\n};\n\nfunction getOperationDefinitions(v3Doc: OpenAPIV3.Document): OperationDefinition[] {\n  return Object.entries(v3Doc.paths).flatMap(([path, pathItem]) =>\n    !pathItem\n      ? []\n      : Object.entries(pathItem)\n          .filter((arg): arg is [string, OpenAPIV3.OperationObject] => operationKeys.includes(arg[0] as any))\n          .map(([verb, operation]) => {\n            const id = camelCase(operation.operationId ?? verb + '/' + path);\n            return {\n              path,\n              verb,\n              id,\n              responses: operation.responses,\n            };\n          }),\n  );\n}\n\nfunction operationFilter(operation: OperationDefinition, options: CliOptions): boolean {\n  const includes = options?.includes?.split(',') ?? null;\n  const excludes = options?.excludes?.split(',') ?? null;\n\n  if (includes && !includes.includes(operation.path)) {\n    return false;\n  }\n  if (excludes?.includes(operation.path)) {\n    return false;\n  }\n  return true;\n}\n\nfunction codeFilter(operation: OperationDefinition, options: CliOptions): OperationDefinition {\n  const rawCodes = options?.codes;\n\n  const codes = rawCodes ? (rawCodes.indexOf(',') !== -1 ? rawCodes?.split(',') : [rawCodes]) : null;\n\n  const responses = Object.entries(operation.responses)\n    .filter(([code]) => {\n      if (codes && !codes.includes(code)) {\n        return false;\n      }\n      return true;\n    })\n    .map(([code, response]) => ({\n      [code]: response,\n    }))\n    .reduce((acc, curr) => Object.assign(acc, curr), {} as OpenAPIV3.ResponsesObject);\n\n  return {\n    ...operation,\n    responses,\n  };\n}\n\nfunction toOperation(definition: OperationDefinition, apiGen: ApiGenerator): Operation {\n  const { verb, path, responses, id } = definition;\n\n  const responseMap = Object.entries(responses).map(([code, response]) => {\n    const content = apiGen.resolve(response).content;\n    if (!content) {\n      return { code, id: '', responses: {} };\n    }\n\n    const resolvedResponse = Object.keys(content).reduce(\n      (resolved, type) => {\n        const schema = content[type].schema;\n        if (typeof schema !== 'undefined') {\n          resolved[type] = recursiveResolveSchema(schema, apiGen);\n        }\n\n        return resolved;\n      },\n      {} as Record<string, OpenAPIV3.SchemaObject>,\n    );\n\n    return {\n      code,\n      id,\n      responses: resolvedResponse,\n    };\n  });\n\n  return {\n    verb,\n    path: toExpressLikePath(path),\n    response: responseMap,\n  };\n}\n\nconst resolvingRefs: string[] = [];\n\nfunction autoPopRefs<T>(cb: () => T) {\n  const n = resolvingRefs.length;\n  const res = cb();\n  resolvingRefs.length = n;\n  return res;\n}\n\nfunction resolve(schema: OpenAPIV3.ReferenceObject | OpenAPIV3.SchemaObject, apiGen: ApiGenerator) {\n  if (isReference(schema)) {\n    if (resolvingRefs.includes(schema.$ref)) {\n      console.warn(`circular reference for path ${[...resolvingRefs, schema.$ref].join(' -> ')} found`);\n      return {};\n    }\n    resolvingRefs.push(schema.$ref);\n  }\n  return { ...apiGen.resolve(schema) };\n}\n\nfunction recursiveResolveSchema(schema: OpenAPIV3.ReferenceObject | OpenAPIV3.SchemaObject, apiGen: ApiGenerator) {\n  return autoPopRefs(() => {\n    const resolvedSchema = resolve(schema, apiGen) as OpenAPIV3.SchemaObject;\n\n    // OpenAPI examples may reference components via $ref; resolve them early so\n    // we don't emit `{ $ref: ... }` as literal example data.\n    const exampleRef = (resolvedSchema as any)?.example?.$ref;\n    if (typeof exampleRef === 'string') {\n      resolvedSchema.example = resolve({ $ref: exampleRef } as any, apiGen) as any;\n    }\n\n    if (resolvedSchema.type === 'array') {\n      resolvedSchema.items = resolve(resolvedSchema.items, apiGen);\n      resolvedSchema.items = recursiveResolveSchema(resolvedSchema.items, apiGen);\n    } else if (resolvedSchema.type === 'object') {\n      if (!resolvedSchema.properties && typeof resolvedSchema.additionalProperties === 'object') {\n        if (isReference(resolvedSchema.additionalProperties)) {\n          resolvedSchema.additionalProperties = recursiveResolveSchema(\n            resolve(resolvedSchema.additionalProperties, apiGen),\n            apiGen,\n          );\n        }\n      }\n\n      if (resolvedSchema.properties) {\n        resolvedSchema.properties = Object.entries(resolvedSchema.properties).reduce(\n          (resolved, [key, value]) => {\n            resolved[key] = recursiveResolveSchema(value, apiGen);\n            return resolved;\n          },\n          {} as Record<string, OpenAPIV3.SchemaObject>,\n        );\n      }\n    }\n\n    if (resolvedSchema.allOf) {\n      resolvedSchema.allOf = resolvedSchema.allOf.map(item => recursiveResolveSchema(item, apiGen));\n    } else if (resolvedSchema.oneOf) {\n      resolvedSchema.oneOf = resolvedSchema.oneOf.map(item => recursiveResolveSchema(item, apiGen));\n    } else if (resolvedSchema.anyOf) {\n      resolvedSchema.anyOf = resolvedSchema.anyOf.map(item => recursiveResolveSchema(item, apiGen));\n    }\n\n    return resolvedSchema;\n  });\n}\n"
  },
  {
    "path": "src/swagger.ts",
    "content": "import SwaggerParser from '@apidevtools/swagger-parser';\nimport type { OpenAPIV3 } from 'openapi-types';\n// @ts-ignore lack of d.ts file\nimport converter from 'swagger2openapi';\n\nexport async function getV3Doc(spec: string): Promise<OpenAPIV3.Document> {\n  const doc = await SwaggerParser.bundle(spec);\n  const isOpenApiV3 = 'openapi' in doc && doc.openapi.startsWith('3');\n  if (isOpenApiV3) {\n    return doc as OpenAPIV3.Document;\n  } else {\n    const result = await converter.convertObj(doc, {});\n    return result.openapi as OpenAPIV3.Document;\n  }\n}\n"
  },
  {
    "path": "src/template.ts",
    "content": "import { ConfigOptions } from './types';\nimport { OperationCollection, transformToHandlerCode, transformToGenerateResultFunctions } from './transform';\nimport { match } from 'ts-pattern';\nimport { DEFAULT_MAX_ARRAY_LENGTH, DEFAULT_MAX_STRING_LENGTH, normalizeNonNegativeInt } from './utils';\n\nconst getImportsCode = () => {\n  const imports = [`import { HttpResponse, http } from 'msw';`, `import { faker } from '@faker-js/faker';`];\n\n  return imports.join('\\n');\n};\n\nconst withApiCounterCode = (options: ConfigOptions) => `\n// Map to store counters for each API endpoint\nconst apiCounters = new Map${options.typescript ? '<string, number>' : ''}();\n\nconst next = (apiKey${options.typescript ? ': string' : ''}) => {\n  let currentCount = apiCounters.get(apiKey) ?? 0;\n  if (currentCount === Number.MAX_SAFE_INTEGER - 1) {\n    currentCount = 0;\n  }\n  apiCounters.set(apiKey, currentCount + 1);\n  return currentCount;\n};\n`;\n\nexport const mockTemplate = (operationCollection: OperationCollection, baseURL: string, options: ConfigOptions) => {\n  assertAiConfig(options);\n  const maxArrayLength = normalizeNonNegativeInt(options?.maxArrayLength, DEFAULT_MAX_ARRAY_LENGTH);\n  return `/**\n* This file is AUTO GENERATED by [msw-auto-mock](https://github.com/zoubingwu/msw-auto-mock)\n* Feel free to commit/edit it as you need.\n*/\n/* eslint-disable */\n/* tslint:disable */\n// @ts-nocheck\n${getImportsCode()}\n${createAiGenerateText(options)}\n${withCacheOne(options)}\n${withCreatePrompt(options)}\n\nfaker.seed(1);\n\nconst baseURL = '${baseURL}';\n${options.static ? '' : `const MAX_ARRAY_LENGTH = ${maxArrayLength};`}\n${options.static ? '' : `const MAX_STRING_LENGTH = ${DEFAULT_MAX_STRING_LENGTH};`}\n\n${withApiCounterCode(options)}\n\nexport const handlers = [\n  ${transformToHandlerCode(operationCollection, options)}\n];\n\n${transformToGenerateResultFunctions(operationCollection, baseURL, options)}\n`;\n};\n\nexport const browserIntegration = [\n  `import { setupWorker } from 'msw/browser'`,\n  `import { handlers } from './handlers'`,\n  `export const worker = setupWorker(...handlers)`,\n].join('\\n');\n\nexport const nodeIntegration = [\n  `import { setupServer } from 'msw/node'`,\n  `import { handlers } from './handlers'`,\n  `export const server = setupServer(...handlers)`,\n].join(`\\n`);\n\nexport const reactNativeIntegration = [\n  `import { setupServer } from 'msw/native'`,\n  `import { handlers } from './handlers'`,\n  // Avoid TS4094 by erasing private/protected members from the inferred class type.\n  `type NativeServer = Pick<ReturnType<typeof setupServer>, 'listen' | 'close' | 'use' | 'restoreHandlers' | 'resetHandlers' | 'listHandlers' | 'events'>`,\n  `export const server: NativeServer = setupServer(...handlers)`,\n].join(`\\n`);\n\nconst toJsExpr = (value?: string) => {\n  if (value == null) return 'undefined';\n  const v = value.trim();\n  // If the user already provided an expression or explicit quotes, keep it.\n  if (v.startsWith('\"') || v.startsWith(\"'\") || v.startsWith('`')) return v;\n  if (v.startsWith('process.env.') || v.startsWith('import.meta.env.') || v.startsWith('Deno.env.')) return v;\n  if (v.startsWith('globalThis.') || v.startsWith('window.')) return v;\n  // Otherwise treat it as a plain string literal.\n  return JSON.stringify(v);\n};\n\nfunction assertAiConfig(options: ConfigOptions) {\n  if (!options.ai?.enable) return;\n\n  const provider = options.ai?.provider;\n  if (!provider) {\n    throw new Error('[msw-auto-mock] ai.enable is true but ai.provider is missing');\n  }\n\n  if (provider === 'openai') {\n    if (!options.ai?.openai?.model) {\n      throw new Error('[msw-auto-mock] ai.enable is true but ai.openai.model is missing');\n    }\n    return;\n  }\n\n  if (provider === 'azure') {\n    if (!options.ai?.azure?.deployment) {\n      throw new Error('[msw-auto-mock] ai.enable is true but ai.azure.deployment is missing');\n    }\n    return;\n  }\n\n  if (provider === 'anthropic') {\n    if (!options.ai?.anthropic?.model) {\n      throw new Error('[msw-auto-mock] ai.enable is true but ai.anthropic.model is missing');\n    }\n  }\n}\n\nconst askOpenai = (options: ConfigOptions) => `\nimport { createOpenAI } from '@ai-sdk/openai';\nimport { generateText } from 'ai';\n\nasync function ask(operation) {\n  const { text } = await generateText({\n    model: createOpenAI({\n      apiKey: ${toJsExpr(options.ai?.openai?.apiKey)},\n      baseURL: ${toJsExpr(options.ai?.openai?.baseURL)},\n    })(${toJsExpr(options.ai?.openai?.model)}),\n    prompt: createPrompt(operation),\n  });\n\n  return JSON.parse(text);\n}\n`;\n\nconst askAzure = (options: ConfigOptions) => `\nimport { createAzure } from '@ai-sdk/azure';\nimport { generateText } from 'ai';\n\nasync function ask(operation) {\n  const { text } = await generateText({\n    model: createAzure({\n      resourceName: ${toJsExpr(options.ai?.azure?.resource)},\n      apiKey: ${toJsExpr(options.ai?.azure?.apiKey)}\n    })(${toJsExpr(options.ai?.azure?.deployment)}),\n    prompt: createPrompt(operation),\n  });\n  return JSON.parse(text);\n}\n`;\n\nconst askAnthropic = (options: ConfigOptions) => `\nimport { createAnthropic } from '@ai-sdk/anthropic';\nimport { generateText } from 'ai';\n\nasync function ask(operation) {\n  const { text } = await generateText({\n    model: createAnthropic({\n      apiKey: ${toJsExpr(options.ai?.anthropic?.apiKey)}\n    })(${toJsExpr(options.ai?.anthropic?.model)}),\n    prompt: createPrompt(operation),\n  });\n  return JSON.parse(text);\n}\n`;\n\nconst withCreatePrompt = (options: ConfigOptions) =>\n  options.ai?.enable\n    ? `\nfunction createPrompt(operation) {\n  return \"Given the following Swagger (OpenAPI) definition, generate a mock data object that conforms to the specified response structure, ensuring each property adheres to its defined constraints, especially type, format, example, description, enum values, ignore the xml field. The generated JSON string should include all the properties defined in the Swagger schema as much as possible and the values should be valid based on the property definitions (e.g., integer, string, length etc.) and rules (e.g, int64 should be string in json etc.). Please only return the JSON string as the output, don't wrap it with markdown. The definition is like below: \\\\n\" + \"\\`\\`\\`json\" + JSON.stringify(operation, null, 4) + \"\\\\n\\`\\`\\`\";\n}\n`\n    : '';\n\nexport function createAiGenerateText(options: ConfigOptions): string {\n  if (!options.ai?.enable) return '';\n  let code = match(options.ai?.provider)\n    .with('openai', () => askOpenai(options))\n    .with('azure', () => askAzure(options))\n    .with('anthropic', () => askAnthropic(options))\n    .otherwise(() => '');\n  return code;\n}\n\nexport function withCacheOne(options: ConfigOptions) {\n  if (options.static && options.ai?.enable) {\n    return `\nconst cache = new Map();\nconst withCacheOne = (ask) => async (operation) => {\n  const key = operation.verb + ' ' + operation.path;\n  if (cache.has(key)) return cache.get(key);\n  const value = await ask(operation);\n  cache.set(key, value);\n  return value;\n}`;\n  }\n\n  return '';\n}\n"
  },
  {
    "path": "src/transform.ts",
    "content": "import vm from 'node:vm';\nimport { OpenAPIV3 } from 'openapi-types';\nimport merge from 'lodash/merge';\nimport camelCase from 'lodash/camelCase';\nimport { faker } from '@faker-js/faker';\nimport { ConfigOptions } from './types';\nimport { DEFAULT_MAX_ARRAY_LENGTH, DEFAULT_MAX_STRING_LENGTH, isValidRegExp, normalizeNonNegativeInt } from './utils';\n\nconst MAX_STRING_LENGTH = DEFAULT_MAX_STRING_LENGTH;\n\nexport interface ResponseMap {\n  code: string;\n  id: string;\n  responses?: Record<string, OpenAPIV3.SchemaObject>;\n}\n\nexport interface Operation {\n  verb: string;\n  path: string;\n  response: ResponseMap[];\n}\n\nexport type OperationCollection = Operation[];\n\nexport function getResIdentifierName(res: ResponseMap) {\n  if (!res.id) {\n    return '';\n  }\n  return camelCase(`get ${res.id}${res.code}Response`);\n}\n\nexport function transformToGenerateResultFunctions(\n  operationCollection: OperationCollection,\n  baseURL: string,\n  options?: ConfigOptions,\n): string {\n  const context = {\n    faker,\n    MAX_STRING_LENGTH,\n    MAX_ARRAY_LENGTH: normalizeNonNegativeInt(options?.maxArrayLength, DEFAULT_MAX_ARRAY_LENGTH),\n    baseURL: baseURL ?? '',\n    result: null,\n  };\n  vm.createContext(context);\n\n  return operationCollection\n    .map(op =>\n      op.response\n        .map(r => {\n          const name = getResIdentifierName(r);\n          if (!name) {\n            return '';\n          }\n\n          const useFaker = options?.ai?.enable !== true;\n\n          if (useFaker) {\n            if (!r.responses) {\n              return;\n            }\n            const jsonResponseKey = Object.keys(r.responses).filter(r => r.startsWith('application/json'))[0];\n            const fakerResult = transformJSONSchemaToFakerCode(r.responses?.[jsonResponseKey]);\n            if (options?.static) {\n              vm.runInContext(`result = ${fakerResult};`, context);\n            }\n\n            return [\n              `export function `,\n              `${name}() { `,\n              `return ${options?.static ? JSON.stringify(context.result) : fakerResult} `,\n              `};\\n`,\n            ].join('\\n');\n          }\n\n          if (!r.responses) {\n            return;\n          }\n          const jsonResponseKey = Object.keys(r.responses).filter(r => r.startsWith('application/json'))[0];\n          const operationString = JSON.stringify(r.responses?.[jsonResponseKey], null, 4);\n          return [\n            `export async function `,\n            `${name}() { `,\n            `return await ${options.static ? `withCacheOne(ask)(${operationString})` : `ask(${operationString})`} `,\n            `};\\n`,\n          ].join('\\n');\n        })\n        .join('\\n'),\n    )\n    .join('\\n');\n}\n\nfunction scoreHandlerPath(path: string) {\n  const segments = path.split('/').filter(Boolean);\n  const dynamicSegments = segments.filter(seg => seg.startsWith(':')).length;\n  return {\n    dynamicSegments,\n    totalSegments: segments.length,\n    normalized: segments.join('/'),\n  };\n}\n\nfunction compareOperationsForMsw(a: Operation, b: Operation) {\n  const sa = scoreHandlerPath(a.path);\n  const sb = scoreHandlerPath(b.path);\n\n  // MSW matches parameterized routes broadly, so put more specific/static routes first.\n  if (sa.dynamicSegments !== sb.dynamicSegments) {\n    return sa.dynamicSegments - sb.dynamicSegments;\n  }\n\n  // Prefer longer paths (more segments) first when they have the same dynamic count.\n  if (sa.totalSegments !== sb.totalSegments) {\n    return sb.totalSegments - sa.totalSegments;\n  }\n\n  // Keep output deterministic.\n  if (a.verb !== b.verb) {\n    return a.verb.localeCompare(b.verb);\n  }\n  return sa.normalized.localeCompare(sb.normalized);\n}\n\nexport function transformToHandlerCode(operationCollection: OperationCollection, options: ConfigOptions): string {\n  return [...operationCollection]\n    .sort(compareOperationsForMsw)\n    .map(op => {\n      return `http.${op.verb}(\\`\\${baseURL}${op.path}\\`, async ({ request }) => {\n        const shouldEchoRequestBody = ${Boolean((options as any)?.echoRequestBody)};\n        let requestJson = null;\n        if (shouldEchoRequestBody && ['post', 'put', 'patch'].includes(${JSON.stringify(op.verb)})) {\n          try {\n            requestJson = await request.clone().json();\n          } catch (e) {\n            requestJson = null;\n          }\n        }\n\n        const resultArray = [${op.response.map(response => {\n          const identifier = getResIdentifierName(response);\n          const statusCode = parseInt(response?.code!);\n          const safeStatusCode = Number.isFinite(statusCode) ? statusCode : 500;\n          const result =\n            safeStatusCode === 204\n              ? `[undefined, { status: ${safeStatusCode} }]`\n              : `[${identifier ? `await ${identifier}()` : 'undefined'}, { status: ${safeStatusCode} }]`;\n\n          return result;\n        })}]${options.typescript ? `as [any, { status: number }][]` : ''};\n\n          const [body, init] = resultArray[next(\\`${op.verb} ${op.path}\\`) % resultArray.length];\n          const responseJson = requestJson && body && typeof body === 'object' && !Array.isArray(body) ? { ...body, ...requestJson } : body;\n          return HttpResponse.json(responseJson, init)\n        }),\\n`;\n    })\n    .join('  ')\n    .trimEnd();\n}\n\nexport function transformJSONSchemaToFakerCode(jsonSchema?: OpenAPIV3.SchemaObject, key?: string): string {\n  if (!jsonSchema) {\n    return 'null';\n  }\n\n  if (jsonSchema.example) {\n    if (jsonSchema.example.$ref) {\n    }\n    return JSON.stringify(jsonSchema.example);\n  }\n\n  if (Array.isArray(jsonSchema.type)) {\n    return `faker.helpers.arrayElement([${jsonSchema.type\n      .map(type => transformJSONSchemaToFakerCode({ ...jsonSchema, type }))\n      .join(',')}])`;\n  }\n\n  if (jsonSchema.enum) {\n    return `faker.helpers.arrayElement(${JSON.stringify(jsonSchema.enum)})`;\n  }\n\n  if (jsonSchema.allOf) {\n    const { allOf, ...rest } = jsonSchema;\n    return transformJSONSchemaToFakerCode(merge({}, ...allOf, rest));\n  }\n\n  if (jsonSchema.oneOf) {\n    const schemas = jsonSchema.oneOf as OpenAPIV3.SchemaObject[];\n    return `faker.helpers.arrayElement([${schemas.map(i => transformJSONSchemaToFakerCode(i))}])`;\n  }\n\n  if (jsonSchema.anyOf) {\n    const schemas = jsonSchema.anyOf as OpenAPIV3.SchemaObject[];\n    return `faker.helpers.arrayElement([${schemas.map(i => transformJSONSchemaToFakerCode(i))}])`;\n  }\n\n  switch (jsonSchema.type) {\n    case 'string':\n      return transformStringBasedOnFormat(jsonSchema, key);\n    case 'number':\n    case 'integer':\n      const params = JSON.stringify({ min: jsonSchema.minimum, max: jsonSchema.maximum });\n      if (jsonSchema.minimum || jsonSchema.maxItems) {\n        return `faker.number.int(${params})`;\n      }\n      return `faker.number.int()`;\n    case 'boolean':\n      return `faker.datatype.boolean()`;\n    case 'object':\n      if (!jsonSchema.properties && typeof jsonSchema.additionalProperties === 'object') {\n        return `[...new Array(5).keys()].map(_ => ({ [faker.lorem.word()]: ${transformJSONSchemaToFakerCode(\n          jsonSchema.additionalProperties as OpenAPIV3.SchemaObject,\n        )} })).reduce((acc, next) => Object.assign(acc, next), {})`;\n      }\n\n      return `{\n        ${Object.entries(jsonSchema.properties ?? {})\n          .map(([k, v]) => {\n            return `${JSON.stringify(k)}: ${transformJSONSchemaToFakerCode(v as OpenAPIV3.SchemaObject, k)}`;\n          })\n          .join(',\\n')}\n    }`;\n    case 'array': {\n      const minItems = normalizeNonNegativeInt(jsonSchema.minItems);\n      const maxItems = normalizeNonNegativeInt(jsonSchema.maxItems);\n      const minItemsValue = minItems ?? 1;\n      const maxItemsValue = maxItems !== undefined ? `Math.min(${maxItems}, MAX_ARRAY_LENGTH)` : 'MAX_ARRAY_LENGTH';\n      return `(() => {\n        const arrayMin = ${minItemsValue};\n        const arrayMax = ${maxItemsValue};\n        const safeMin = Math.min(arrayMin, arrayMax);\n        return [...new Array(faker.number.int({ min: safeMin, max: arrayMax })).keys()].map(_ => (${transformJSONSchemaToFakerCode(\n          jsonSchema.items as OpenAPIV3.SchemaObject,\n        )}));\n      })()`;\n    }\n    default:\n      return 'null';\n  }\n}\n\n/**\n * See https://json-schema.org/understanding-json-schema/reference/string.html#built-in-formats\n */\nfunction transformStringBasedOnFormat(schema: OpenAPIV3.NonArraySchemaObject, key?: string) {\n  const { format, minLength, maxLength, pattern } = schema;\n  if (format === 'date-time' || key?.toLowerCase().endsWith('_at')) {\n    return `faker.date.anytime().toISOString()`;\n  } else if (format === 'time') {\n    return `new Date().toISOString().substring(11, 16)`;\n  } else if (format === 'date') {\n    return `faker.date.past().toISOString().substring(0,10)`;\n  } else if (format === 'uuid' || key?.toLowerCase() === 'id' || key?.toLowerCase().endsWith('id')) {\n    return `faker.string.uuid()`;\n  } else if (['idn-email', 'email'].includes(format ?? '') || key?.toLowerCase().includes('email')) {\n    return `faker.internet.email()`;\n  } else if (['hostname', 'idn-hostname'].includes(format ?? '')) {\n    return `faker.internet.domainName()`;\n  } else if (format === 'ipv4') {\n    return `faker.internet.ip()`;\n  } else if (format === 'ipv6') {\n    return `faker.internet.ipv6()`;\n  } else if (\n    ['uri', 'uri-reference', 'iri', 'iri-reference', 'uri-template'].includes(format ?? '') ||\n    key?.toLowerCase().includes('url')\n  ) {\n    if (['photo', 'image', 'picture'].some(image => key?.toLowerCase().includes(image))) {\n      return `faker.image.url()`;\n    }\n    return `faker.internet.url()`;\n  } else if (key?.toLowerCase().endsWith('name')) {\n    return `faker.person.fullName()`;\n  } else if (key?.toLowerCase().includes('street')) {\n    return `faker.location.streetAddress()`;\n  } else if (key?.toLowerCase().includes('city')) {\n    return `faker.location.city()`;\n  } else if (key?.toLowerCase().includes('state')) {\n    return `faker.location.state()`;\n  } else if (key?.toLowerCase().includes('zip')) {\n    return `faker.location.zipCode()`;\n  }\n\n  if (minLength && maxLength) {\n    return `faker.string.alpha({ length: { min: ${minLength}, max: ${maxLength} }})`;\n  } else if (minLength) {\n    return `faker.string.alpha({ length: { min: ${minLength}, max: MAX_STRING_LENGTH }})`;\n  } else if (maxLength) {\n    return `faker.string.alpha({ length: { min: 0, max: ${maxLength} }})`;\n  }\n\n  if (pattern && isValidRegExp(pattern)) {\n    // OpenAPI `pattern` is a bare regex source (e.g. ^[a-z]{2,}$), not a JS literal.\n    // Some users still pass JS regex literals as strings (e.g. '/^foo$/i'); support both.\n    if (pattern.startsWith('/')) {\n      return `faker.helpers.fromRegExp(${pattern})`;\n    }\n    // Use `new RegExp()` with a JSON-escaped string to avoid syntax errors.\n    return `faker.helpers.fromRegExp(new RegExp(${JSON.stringify(pattern)}))`;\n  }\n\n  return `faker.lorem.words()`;\n}\n"
  },
  {
    "path": "src/types.ts",
    "content": "export interface CliOptions {\n  output: string;\n  maxArrayLength?: number;\n  includes?: string;\n  excludes?: string;\n  baseUrl?: string | true;\n  codes?: string;\n  static?: boolean;\n  typescript?: boolean;\n\n  /**\n   * When enabled, JSON responses for write requests (POST/PUT/PATCH) will merge\n   * the request JSON body into the generated response body.\n   */\n  echoRequestBody?: boolean;\n}\n\nexport type ConfigOptions = CliOptions & {\n  typescript?: boolean;\n  ai?: {\n    enable?: boolean;\n    provider: 'openai' | 'azure' | 'anthropic';\n    openai?: {\n      baseURL?: string;\n      /**\n       * defaults to `OPENAI_API_KEY`\n       */\n      apiKey?: string;\n      model?: string;\n    };\n    azure?: {\n      /**\n       * defaults to `AZURE_API_KEY`\n       */\n      apiKey?: string;\n      resource?: string;\n      deployment?: string;\n    };\n    anthropic?: {\n      /**\n       * defaults to `ANTHROPIC_API_KEY`\n       */\n      apiKey?: string;\n      model?: string;\n    };\n  };\n};\n"
  },
  {
    "path": "src/utils.ts",
    "content": "import * as prettier from 'prettier';\nimport * as path from 'path';\nimport camelCase from 'lodash/camelCase';\n\nexport const DEFAULT_MAX_ARRAY_LENGTH = 20;\nexport const DEFAULT_MAX_STRING_LENGTH = 42;\n\nexport const normalizeNonNegativeInt = (value: unknown, fallback?: number) => {\n  if (value === undefined || value === null) {\n    return fallback;\n  }\n  const raw = typeof value === 'string' && value.trim() === '' ? NaN : Number(value);\n  if (!Number.isFinite(raw)) {\n    return fallback;\n  }\n  const normalized = Math.floor(raw);\n  if (normalized < 0) {\n    return 0;\n  }\n  return normalized;\n};\n\nconst EXTENSION_TO_PARSER: Record<string, string> = {\n  ts: 'typescript',\n  tsx: 'typescript',\n  js: 'babel',\n  jsx: 'babel',\n  'js.flow': 'flow',\n  flow: 'flow',\n  gql: 'graphql',\n  graphql: 'graphql',\n  css: 'postcss',\n  scss: 'postcss',\n  less: 'postcss',\n  stylus: 'postcss',\n  markdown: 'markdown',\n  md: 'markdown',\n  json: 'json',\n};\n\nexport async function prettify(filePath: string | null, content: string): Promise<string> {\n  let config = null;\n  let parser = 'typescript';\n\n  if (filePath) {\n    const fileExtension = path.extname(filePath).slice(1);\n    parser = EXTENSION_TO_PARSER[fileExtension];\n    config = await prettier.resolveConfig(process.cwd(), {\n      useCache: true,\n      editorconfig: true,\n    });\n  }\n\n  try {\n    return prettier.format(content, {\n      parser,\n      ...config,\n\n      // disable plugins\n      plugins: [],\n    });\n  } catch (e) {\n    // ignore error\n    return content;\n  }\n}\n\nexport const toExpressLikePath = (path: string) =>\n  // use `.+?` for lazy match\n  path.replace(/{(.+?)}/g, (_match, p1: string) => `:${camelCase(p1)}`);\n\nexport const isValidRegExp = (regExpCandidate: string) => {\n  var isValid = true;\n  try {\n    new RegExp(regExpCandidate);\n  } catch (e) {\n    isValid = false;\n  }\n  return isValid;\n};\n"
  },
  {
    "path": "test/ai-runtime.spec.ts",
    "content": "import { describe, expect, it, vi } from 'vitest';\n\nimport { createAiGenerateText } from '../src/template';\n\n// This test runs the generated `ask()` function with mocked dependencies.\n// It ensures the generated runtime awaits the AI call and parses JSON correctly.\ndescribe('ai runtime: generated ask()', () => {\n  it('awaits generateText() and returns parsed JSON', async () => {\n    const code = createAiGenerateText({\n      output: '',\n      ai: {\n        enable: true,\n        provider: 'openai',\n        openai: {\n          apiKey: 'process.env.OPENAI_API_KEY',\n          model: 'gpt-5.2',\n        },\n      },\n    } as any);\n\n    // Strip ESM imports so we can eval the function in this test environment.\n    const body = code\n      .split('\\n')\n      .filter(line => !line.startsWith('import '))\n      .join('\\n');\n\n    const createOpenAI = vi.fn(() => () => 'mock-model');\n    const generateText = vi.fn(async () => ({ text: '{\"hello\":\"world\"}' }));\n\n    // The generated code expects a `createPrompt()` function.\n    function createPrompt(_operation: unknown) {\n      return 'prompt';\n    }\n\n    // Evaluate the generated `ask()` and grab it back.\n    // eslint-disable-next-line no-eval\n    const ask = eval(`(() => {\\n${body}\\n; return ask; })()`);\n\n    const result = await ask({});\n\n    expect(createOpenAI).toHaveBeenCalledTimes(1);\n    expect(generateText).toHaveBeenCalledTimes(1);\n    expect(result).toEqual({ hello: 'world' });\n  });\n});\n"
  },
  {
    "path": "test/fixture/githubapi.yaml",
    "content": "---\nopenapi: 3.0.3\ninfo:\n  version: 1.1.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/contact?tags=dotcom-rest-api\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: codespaces\n  description: Endpoints to manage Codespaces using the REST API.\n- name: emojis\n  description: List emojis available to use on GitHub.\n- name: enterprise-admin\n  description: Administer a GitHub enterprise.\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 interactions.\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: packages\n  description: Manage packages for authenticated users and organizations.\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: secret-scanning\n  description: Retrieve secret scanning alerts from a repository.\n- name: server-statistics\n  description: GHES statistics\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}/api/v3\"\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://docs.github.com/enterprise-server@3.3/rest/\npaths:\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-template\n                  current_user_authorizations_html_url:\n                    type: string\n                    format: uri-template\n                  authorizations_url:\n                    type: string\n                    format: uri-template\n                  code_search_url:\n                    type: string\n                    format: uri-template\n                  commit_search_url:\n                    type: string\n                    format: uri-template\n                  emails_url:\n                    type: string\n                    format: uri-template\n                  emojis_url:\n                    type: string\n                    format: uri-template\n                  events_url:\n                    type: string\n                    format: uri-template\n                  feeds_url:\n                    type: string\n                    format: uri-template\n                  followers_url:\n                    type: string\n                    format: uri-template\n                  following_url:\n                    type: string\n                    format: uri-template\n                  gists_url:\n                    type: string\n                    format: uri-template\n                  hub_url:\n                    type: string\n                    format: uri-template\n                  issue_search_url:\n                    type: string\n                    format: uri-template\n                  issues_url:\n                    type: string\n                    format: uri-template\n                  keys_url:\n                    type: string\n                    format: uri-template\n                  label_search_url:\n                    type: string\n                    format: uri-template\n                  notifications_url:\n                    type: string\n                    format: uri-template\n                  organization_url:\n                    type: string\n                    format: uri-template\n                  organization_repositories_url:\n                    type: string\n                    format: uri-template\n                  organization_teams_url:\n                    type: string\n                    format: uri-template\n                  public_gists_url:\n                    type: string\n                    format: uri-template\n                  rate_limit_url:\n                    type: string\n                    format: uri-template\n                  repository_url:\n                    type: string\n                    format: uri-template\n                  repository_search_url:\n                    type: string\n                    format: uri-template\n                  current_user_repositories_url:\n                    type: string\n                    format: uri-template\n                  starred_url:\n                    type: string\n                    format: uri-template\n                  starred_gists_url:\n                    type: string\n                    format: uri-template\n                  topic_search_url:\n                    type: string\n                    format: uri-template\n                  user_url:\n                    type: string\n                    format: uri-template\n                  user_organizations_url:\n                    type: string\n                    format: uri-template\n                  user_repositories_url:\n                    type: string\n                    format: uri-template\n                  user_search_url:\n                    type: string\n                    format: uri-template\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        category: meta\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#root-endpoint\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: global-webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#create-a-global-webhook\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        required: true\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/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        category: enterprise-admin\n        subcategory: global-webhooks\n  \"/admin/hooks/{hook_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-a-global-webhook\n      parameters:\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        category: enterprise-admin\n        subcategory: global-webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#update-a-global-webhook\n      parameters:\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/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        category: enterprise-admin\n        subcategory: global-webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: global-webhooks\n  \"/admin/hooks/{hook_id}/pings\":\n    post:\n      summary: Ping a global webhook\n      description: This will trigger a [ping event](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: global-webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-public-keys\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/direction\"\n      - name: sort\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - accessed\n          default: created\n      - name: since\n        description: Only show public keys accessed after the given time.\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                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/public-key-full\"\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        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#delete-a-public-key\n      parameters:\n      - \"$ref\": \"#/components/parameters/key-ids\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: users\n  \"/admin/ldap/teams/{team_id}/mapping\":\n    patch:\n      summary: Update LDAP mapping for a team\n      description: Updates the [distinguished name](https://www.ldap.com/ldap-dns-and-rdns)\n        (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)\n        must be enabled to map LDAP entries to a team. Use the [Create a team](https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#create-a-team)\n        endpoint to create a team with LDAP mapping.\n      operationId: enterprise-admin/update-ldap-mapping-for-team\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\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              required:\n              - ldap_dn\n            example:\n              ldap_dn: cn=Enterprise Ops,ou=teams,dc=github,dc=com\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: ldap\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: ldap\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\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              required:\n              - ldap_dn\n            example:\n              ldap_dn: uid=asdf,ou=users,dc=github,dc=com\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: ldap\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: ldap\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\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        category: enterprise-admin\n        subcategory: orgs\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\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        category: enterprise-admin\n        subcategory: orgs\n  \"/admin/pre-receive-environments\":\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-pre-receive-environments\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/direction\"\n      - name: sort\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - name\n          default: created\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        category: enterprise-admin\n        subcategory: 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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\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        category: enterprise-admin\n        subcategory: pre-receive-environments\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: pre-receive-environments\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: pre-receive-environments\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#delete-a-pre-receive-environment\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-environment-id\"\n      responses:\n        '204':\n          description: 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        category: enterprise-admin\n        subcategory: pre-receive-environments\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: pre-receive-environments\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: pre-receive-environments\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-pre-receive-hooks\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/direction\"\n      - name: sort\n        description: One of `created` (when the repository was starred) or `updated`\n          (when it was last pushed to) or `name`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - name\n          default: created\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        category: enterprise-admin\n        subcategory: pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\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        category: enterprise-admin\n        subcategory: pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#delete-a-pre-receive-hook\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#delete-a-personal-access-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/token-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\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        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\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        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#delete-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: users\n  \"/admin/users/{username}/authorizations\":\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                scopes:\n                  type: array\n                  description: A list of [scopes](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n                  items:\n                    type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#delete-an-impersonation-oauth-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/apps#list-installations-for-the-authenticated-app)\" endpoint.\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: apps\n        subcategory:\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps#create-a-github-app-from-a-manifest\n      parameters:\n      - name: code\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              additionalProperties: false\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                      nullable: true\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        category: apps\n        subcategory:\n  \"/app/hook/config\":\n    get:\n      summary: Get a webhook configuration for an app\n      description: |-\n        Returns the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see \"[Creating a GitHub App](/developers/apps/creating-a-github-app).\"\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/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-webhook-config-for-app\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#get-a-webhook-configuration-for-an-app\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/webhook-config\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/webhook-config\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory: webhooks\n    patch:\n      summary: Update a webhook configuration for an app\n      description: |-\n        Updates the webhook configuration for a GitHub App. For more information about configuring a webhook for your app, see \"[Creating a GitHub App](/developers/apps/creating-a-github-app).\"\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/update-webhook-config-for-app\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#update-a-webhook-configuration-for-an-app\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                url:\n                  \"$ref\": \"#/components/schemas/webhook-config-url\"\n                content_type:\n                  \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n                secret:\n                  \"$ref\": \"#/components/schemas/webhook-config-secret\"\n                insecure_ssl:\n                  \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\n              example:\n                content_type: json\n                insecure_ssl: '0'\n                secret: \"********\"\n                url: https://example.com/webhook\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/webhook-config\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/webhook-config\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory: webhooks\n  \"/app/hook/deliveries\":\n    get:\n      summary: List deliveries for an app webhook\n      description: |-\n        Returns a list of webhook deliveries for the webhook configured for a GitHub App.\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/list-webhook-deliveries\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#list-deliveries-for-an-app-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/cursor\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/hook-delivery-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook-delivery-items\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory: webhooks\n  \"/app/hook/deliveries/{delivery_id}\":\n    get:\n      summary: Get a delivery for an app webhook\n      description: |-\n        Returns a delivery for the webhook configured for a GitHub App.\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/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-webhook-delivery\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#get-a-delivery-for-an-app-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/delivery-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/hook-delivery\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook-delivery\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory: webhooks\n  \"/app/hook/deliveries/{delivery_id}/attempts\":\n    post:\n      summary: Redeliver a delivery for an app webhook\n      description: |-\n        Redeliver a delivery for the webhook configured for a GitHub App.\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/redeliver-webhook-delivery\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#redeliver-a-delivery-for-an-app-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/delivery-id\"\n      responses:\n        '202':\n          \"$ref\": \"#/components/responses/accepted\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory: webhooks\n  \"/app/installations\":\n    get:\n      summary: List installations for the authenticated app\n      description: |-\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: apps\n        subcategory:\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: apps\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/apps/#suspend-an-app-installation)\" endpoint.\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps#delete-an-installation-for-the-authenticated-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation-id\"\n      responses:\n        '204':\n          description: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory:\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps/#create-an-installation-access-token-for-an-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation-id\"\n      requestBody:\n        required: false\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                  \"$ref\": \"#/components/schemas/app-permissions\"\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        category: apps\n        subcategory:\n  \"/app/installations/{installation_id}/suspended\":\n    put:\n      summary: Suspend an app installation\n      description: |-\n        Suspends a GitHub App on a user, organization, or business account, which blocks the app from accessing the account's resources. When a GitHub App is suspended, the app's access to the GitHub Enterprise Server API or webhook events is blocked for that account.\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/suspend-installation\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#suspend-an-app-installation\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation-id\"\n      responses:\n        '204':\n          description: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory:\n    delete:\n      summary: Unsuspend an app installation\n      description: |-\n        Removes a GitHub App installation suspension.\n\n        You must use a [JWT](https://docs.github.com/enterprise-server@3.3/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/unsuspend-installation\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#unsuspend-an-app-installation\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation-id\"\n      responses:\n        '204':\n          description: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/developers/apps/authorizing-oauth-apps#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations#list-your-grants\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - name: client_id\n        in: query\n        required: false\n        description: The client ID of your GitHub app.\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/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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\n      deprecated: true\n  \"/applications/grants/{grant_id}\":\n    get:\n      summary: Get a single grant\n      description: \"**Deprecation Notice:** GitHub Enterprise Server will discontinue\n        the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n        The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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/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://docs.github.com/enterprise-server@3.3/rest/reference/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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\n      deprecated: true\n    delete:\n      summary: Delete a grant\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/developers/apps/authorizing-oauth-apps#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations/) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/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://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations#delete-a-grant\n      parameters:\n      - \"$ref\": \"#/components/parameters/grant-id\"\n      responses:\n        '204':\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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\n      deprecated: true\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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/apps#delete-an-app-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        required: true\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              required:\n              - access_token\n            example:\n              access_token: e72e16c7e42f292c6912e7710c838347ae178b4a\n      responses:\n        '204':\n          description: Response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory: oauth-applications\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 discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/apps#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        removalDate: '2021-05-05'\n        deprecationDate: '2020-02-14'\n        category: apps\n        subcategory: oauth-applications\n      deprecated: true\n  \"/applications/{client_id}/token\":\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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/apps#check-a-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        required: true\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        category: apps\n        subcategory: oauth-applications\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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/apps#reset-a-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        required: true\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        category: apps\n        subcategory: oauth-applications\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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/apps#delete-an-app-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        required: true\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              required:\n              - access_token\n            example:\n              access_token: e72e16c7e42f292c6912e7710c838347ae178b4a\n      responses:\n        '204':\n          description: Response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: apps\n        subcategory: oauth-applications\n  \"/applications/{client_id}/token/scoped\":\n    post:\n      summary: Create a scoped access token\n      description: Use a non-scoped user-to-server OAuth access token to create a\n        repository scoped and/or permission scoped user-to-server OAuth access token.\n        You can specify which repositories the token can access and which permissions\n        are granted to the token. You must use [Basic Authentication](https://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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/scope-token\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#create-a-scoped-access-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        required: true\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: e72e16c7e42f292c6912e7710c838347ae178b4a\n                target:\n                  description: The name of the user or organization to scope the user-to-server\n                    access token to. **Required** unless `target_id` is specified.\n                  type: string\n                  example: octocat\n                target_id:\n                  description: The ID of the user or organization to scope the user-to-server\n                    access token to. **Required** unless `target` is specified.\n                  example: 1\n                  type: integer\n                repositories:\n                  description: The list of repository names to scope the user-to-server\n                    access token to. `repositories` may not be specified if `repository_ids`\n                    is specified.\n                  type: array\n                  items:\n                    type: string\n                    example: rails\n                repository_ids:\n                  description: The list of repository IDs to scope the user-to-server\n                    access token to. `repository_ids` may not be specified if `repositories`\n                    is specified.\n                  example:\n                  - 1\n                  type: array\n                  items:\n                    type: integer\n                permissions:\n                  \"$ref\": \"#/components/schemas/app-permissions\"\n              required:\n              - 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/scope-token\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\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        category: apps\n        subcategory: oauth-applications\n  \"/applications/{client_id}/tokens/{access_token}\":\n    get:\n      summary: Check an authorization\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/apps#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                \"$ref\": \"#/components/schemas/nullable-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        removalDate: '2021-05-05'\n        deprecationDate: '2020-02-14'\n        category: apps\n        subcategory: oauth-applications\n      deprecated: true\n    post:\n      summary: Reset an authorization\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/apps#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        removalDate: '2021-05-05'\n        deprecationDate: '2020-02-14'\n        category: apps\n        subcategory: oauth-applications\n      deprecated: true\n    delete:\n      summary: Revoke an authorization for an application\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/apps#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        removalDate: '2021-05-05'\n        deprecationDate: '2020-02-14'\n        category: apps\n        subcategory: oauth-applications\n      deprecated: true\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps/#get-an-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/app-slug\"\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        category: apps\n        subcategory:\n  \"/authorizations\":\n    get:\n      summary: List your authorizations\n      description: \"**Deprecation Notice:** GitHub Enterprise Server will discontinue\n        the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n        The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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/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://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations#list-your-authorizations\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - name: client_id\n        in: query\n        required: false\n        description: The client ID of your GitHub app.\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/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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\n      deprecated: true\n    post:\n      summary: Create a new authorization\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/developers/apps/authorizing-oauth-apps#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        **Warning:** Apps must use the [web application flow](https://docs.github.com/enterprise-server@3.3/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/changes/2019-11-05-deprecated-passwords-and-authorizations-api).\n\n        Creates OAuth tokens using [Basic Authentication](https://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations#create-a-new-authorization\n      parameters: []\n      requestBody:\n        required: false\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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/developers/apps/authorizing-oauth-apps#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        **Warning:** Apps must use the [web application flow](https://docs.github.com/enterprise-server@3.3/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/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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#working-with-two-factor-authentication).\"\n\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/developers/apps/authorizing-oauth-apps#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/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://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations#get-or-create-an-authorization-for-a-specific-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        required: true\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: 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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n            The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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/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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/developers/apps/authorizing-oauth-apps#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        **Warning:** Apps must use the [web application flow](https://docs.github.com/enterprise-server@3.3/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/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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/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        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        required: true\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: 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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\n      deprecated: true\n  \"/authorizations/{authorization_id}\":\n    get:\n      summary: Get a single authorization\n      description: \"**Deprecation Notice:** GitHub Enterprise Server will discontinue\n        the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n        The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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/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://docs.github.com/enterprise-server@3.3/rest/reference/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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/developers/apps/authorizing-oauth-apps#web-application-flow). The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations#update-an-existing-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/authorization-id\"\n      requestBody:\n        required: false\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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\n      deprecated: true\n    delete:\n      summary: Delete an authorization\n      description: \"**Deprecation Notice:** GitHub Enterprise Server will discontinue\n        the [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n        The [OAuth Authorizations API](https://docs.github.com/enterprise-server@3.3/rest/reference/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/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://docs.github.com/enterprise-server@3.3/rest/reference/oauth-authorizations#delete-an-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/authorization-id\"\n      responses:\n        '204':\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        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n        category: oauth-authorizations\n        subcategory:\n      deprecated: true\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://docs.github.com/enterprise-server@3.3/rest/reference/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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: codes-of-conduct\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/codes-of-conduct#get-a-code-of-conduct\n      parameters:\n      - name: key\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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: codes-of-conduct\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: emojis\n        subcategory:\n  \"/enterprise/announcement\":\n    get:\n      summary: Get the global announcement banner\n      description: Gets the current message and expiration date of the global announcement\n        banner in your enterprise.\n      tags:\n      - enterprise-admin\n      operationId: enterprise-admin/get-announcement\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/announcement\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/announcement\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: announcement\n    patch:\n      summary: Set the global announcement banner\n      description: Sets the message and expiration time for the global announcement\n        banner in your enterprise.\n      tags:\n      - enterprise-admin\n      operationId: enterprise-admin/set-announcement\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              \"$ref\": \"#/components/schemas/announcement\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/announcement\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/announcement\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: announcement\n    delete:\n      summary: Remove the global announcement banner\n      description: Removes the global announcement banner in your enterprise.\n      tags:\n      - enterprise-admin\n      operationId: enterprise-admin/remove-announcement\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: announcement\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: license\n  \"/enterprise/stats/all\":\n    get:\n      summary: Get all statistics\n      description: ''\n      operationId: enterprise-admin/get-all-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-statistics\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        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/comments\":\n    get:\n      summary: Get comment statistics\n      description: ''\n      operationId: enterprise-admin/get-comment-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-comment-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-comment-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/gists\":\n    get:\n      summary: Get gist statistics\n      description: ''\n      operationId: enterprise-admin/get-gist-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-gist-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-gist-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/hooks\":\n    get:\n      summary: Get hooks statistics\n      operationId: enterprise-admin/get-hooks-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-hooks-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-hook-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/issues\":\n    get:\n      summary: Get issue statistics\n      description: ''\n      operationId: enterprise-admin/get-issue-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-issues-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-issue-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/milestones\":\n    get:\n      summary: Get milestone statistics\n      description: ''\n      operationId: enterprise-admin/get-milestone-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-milestone-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-milestone-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/orgs\":\n    get:\n      summary: Get organization statistics\n      description: ''\n      operationId: enterprise-admin/get-org-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-organization-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-organization-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/pages\":\n    get:\n      summary: Get pages statistics\n      description: ''\n      operationId: enterprise-admin/get-pages-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-pages-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-page-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/pulls\":\n    get:\n      summary: Get pull request statistics\n      description: ''\n      operationId: enterprise-admin/get-pull-request-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-pull-requests-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-pull-request-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/repos\":\n    get:\n      summary: Get repository statistics\n      operationId: enterprise-admin/get-repo-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-repository-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-repository-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprise/stats/users\":\n    get:\n      summary: Get users statistics\n      description: ''\n      operationId: enterprise-admin/get-user-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-users-statistics\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-user-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: admin-stats\n  \"/enterprises/{enterprise}/actions/permissions\":\n    get:\n      summary: Get GitHub Actions permissions for an enterprise\n      description: |-\n        Gets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.\n\n        You must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/get-github-actions-permissions-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-github-actions-permissions-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/actions-enterprise-permissions\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-enterprise-permissions\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    put:\n      summary: Set GitHub Actions permissions for an enterprise\n      description: |-\n        Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.\n\n        You must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/set-github-actions-permissions-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#set-github-actions-permissions-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                enabled_organizations:\n                  \"$ref\": \"#/components/schemas/enabled-organizations\"\n                allowed_actions:\n                  \"$ref\": \"#/components/schemas/allowed-actions\"\n              required:\n              - enabled_organizations\n            example:\n              enabled_organizations: all\n              allowed_actions: selected\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/permissions/organizations\":\n    get:\n      summary: List selected organizations enabled for GitHub Actions in an enterprise\n      description: |-\n        Lists the organizations that are selected to have GitHub Actions enabled in an enterprise. To use this endpoint, the enterprise permission policy for `enabled_organizations` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\n        You must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/list-selected-organizations-enabled-github-actions-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-selected-organizations-enabled-for-github-actions-in-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\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: number\n                  organizations:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/organization-simple\"\n                required:\n                - total_count\n                - organizations\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-targets\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    put:\n      summary: Set selected organizations enabled for GitHub Actions in an enterprise\n      description: |-\n        Replaces the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for `enabled_organizations` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\n        You must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/set-selected-organizations-enabled-github-actions-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#set-selected-organizations-enabled-for-github-actions-in-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                selected_organization_ids:\n                  description: List of organization IDs to enable for GitHub Actions.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the organization.\n              required:\n              - selected_organization_ids\n            example:\n              selected_organization_ids:\n              - 32\n              - 91\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/permissions/organizations/{org_id}\":\n    put:\n      summary: Enable a selected organization for GitHub Actions in an enterprise\n      description: |-\n        Adds an organization to the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for `enabled_organizations` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\n        You must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/enable-selected-organization-github-actions-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#enable-a-selected-organization-for-github-actions-in-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/org-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    delete:\n      summary: Disable a selected organization for GitHub Actions in an enterprise\n      description: |-\n        Removes an organization from the list of selected organizations that are enabled for GitHub Actions in an enterprise. To use this endpoint, the enterprise permission policy for `enabled_organizations` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\n        You must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/disable-selected-organization-github-actions-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#disable-a-selected-organization-for-github-actions-in-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/org-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/permissions/selected-actions\":\n    get:\n      summary: Get allowed actions for an enterprise\n      description: |-\n        Gets the selected actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\n        You must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/get-allowed-actions-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-allowed-actions-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/selected-actions\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/selected-actions\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    put:\n      summary: Set allowed actions for an enterprise\n      description: |-\n        Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\n        You must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/set-allowed-actions-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#set-allowed-actions-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              \"$ref\": \"#/components/schemas/selected-actions\"\n            examples:\n              selected_actions:\n                \"$ref\": \"#/components/examples/selected-actions\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runner-groups\":\n    get:\n      summary: List self-hosted runner groups for an enterprise\n      description: |-\n        Lists all self-hosted runner groups for an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/list-self-hosted-runner-groups-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-self-hosted-runner-groups-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\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: number\n                  runner_groups:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/runner-groups-enterprise\"\n                required:\n                - total_count\n                - runner_groups\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-groups-enterprise\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    post:\n      summary: Create a self-hosted runner group for an enterprise\n      description: |-\n        Creates a new self-hosted runner group for an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/create-self-hosted-runner-group-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#create-self-hosted-runner-group-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  description: Name of the runner group.\n                  type: string\n                visibility:\n                  description: 'Visibility of a runner group. You can select all organizations\n                    or select individual organization. Can be one of: `all` or `selected`'\n                  type: string\n                  enum:\n                  - selected\n                  - all\n                selected_organization_ids:\n                  description: List of organization IDs that can access the runner\n                    group.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the organization.\n                runners:\n                  description: List of runner IDs to add to the runner group.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the runner.\n                allows_public_repositories:\n                  description: Whether the runner group can be used by `public` repositories.\n                  type: boolean\n                  default: false\n              required:\n              - name\n            example:\n              name: Expensive hardware runners\n              visibility: selected\n              selected_organization_ids:\n              - 32\n              - 91\n              runners:\n              - 9\n              - 2\n      responses:\n        '201':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner-groups-enterprise\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-group-enterprise\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runner-groups/{runner_group_id}\":\n    get:\n      summary: Get a self-hosted runner group for an enterprise\n      description: |-\n        Gets a specific self-hosted runner group for an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/get-self-hosted-runner-group-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-a-self-hosted-runner-group-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner-groups-enterprise\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-group-enterprise\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    patch:\n      summary: Update a self-hosted runner group for an enterprise\n      description: |-\n        Updates the `name` and `visibility` of a self-hosted runner group in an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/update-self-hosted-runner-group-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#update-a-self-hosted-runner-group-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  description: Name of the runner group.\n                  type: string\n                visibility:\n                  description: 'Visibility of a runner group. You can select all organizations\n                    or select individual organizations. Can be one of: `all` or `selected`'\n                  type: string\n                  enum:\n                  - selected\n                  - all\n                  default: all\n                allows_public_repositories:\n                  description: Whether the runner group can be used by `public` repositories.\n                  type: boolean\n                  default: false\n            example:\n              name: Expensive hardware runners\n              visibility: selected\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner-groups-enterprise\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-group-update-enterprise\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    delete:\n      summary: Delete a self-hosted runner group from an enterprise\n      description: |-\n        Deletes a self-hosted runner group for an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/delete-self-hosted-runner-group-from-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#delete-a-self-hosted-runner-group-from-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations\":\n    get:\n      summary: List organization access to a self-hosted runner group in an enterprise\n      description: |-\n        Lists the organizations with access to a self-hosted runner group.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/list-org-access-to-self-hosted-runner-group-in-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-organization-access-to-a-self-hosted-runner-group-in-a-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-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: object\n                properties:\n                  total_count:\n                    type: number\n                  organizations:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/organization-simple\"\n                required:\n                - total_count\n                - organizations\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-targets\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    put:\n      summary: Set organization access for a self-hosted runner group in an enterprise\n      description: |-\n        Replaces the list of organizations that have access to a self-hosted runner configured in an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/set-org-access-to-self-hosted-runner-group-in-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#set-organization-access-to-a-self-hosted-runner-group-in-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                selected_organization_ids:\n                  description: List of organization IDs that can access the runner\n                    group.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the organization.\n              required:\n              - selected_organization_ids\n            example:\n              selected_organization_ids:\n              - 32\n              - 91\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/organizations/{org_id}\":\n    put:\n      summary: Add organization access to a self-hosted runner group in an enterprise\n      description: |-\n        Adds an organization to the list of selected organizations that can access a self-hosted runner group. The runner group must have `visibility` set to `selected`. For more information, see \"[Create a self-hosted runner group for an enterprise](#create-a-self-hosted-runner-group-for-an-enterprise).\"\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/add-org-access-to-self-hosted-runner-group-in-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#add-organization-access-to-a-self-hosted-runner-group-in-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/org-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    delete:\n      summary: Remove organization access to a self-hosted runner group in an enterprise\n      description: |-\n        Removes an organization from the list of selected organizations that can access a self-hosted runner group. The runner group must have `visibility` set to `selected`. For more information, see \"[Create a self-hosted runner group for an enterprise](#create-a-self-hosted-runner-group-for-an-enterprise).\"\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/remove-org-access-to-self-hosted-runner-group-in-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#remove-organization-access-to-a-self-hosted-runner-group-in-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/org-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners\":\n    get:\n      summary: List self-hosted runners in a group for an enterprise\n      description: |-\n        Lists the self-hosted runners that are in a specific enterprise group.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/list-self-hosted-runners-in-group-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-self-hosted-runners-in-a-group-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-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: object\n                properties:\n                  total_count:\n                    type: number\n                  runners:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/runner\"\n                required:\n                - total_count\n                - runners\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    put:\n      summary: Set self-hosted runners in a group for an enterprise\n      description: |-\n        Replaces the list of self-hosted runners that are part of an enterprise runner group.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/set-self-hosted-runners-in-group-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#set-self-hosted-runners-in-a-group-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                runners:\n                  description: List of runner IDs to add to the runner group.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the runner.\n              required:\n              - runners\n            example:\n              runners:\n              - 9\n              - 2\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runner-groups/{runner_group_id}/runners/{runner_id}\":\n    put:\n      summary: Add a self-hosted runner to a group for an enterprise\n      description: |-\n        Adds a self-hosted runner to a runner group configured in an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise`\n        scope to use this endpoint.\n      operationId: enterprise-admin/add-self-hosted-runner-to-group-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#add-a-self-hosted-runner-to-a-group-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    delete:\n      summary: Remove a self-hosted runner from a group for an enterprise\n      description: |-\n        Removes a self-hosted runner from a group configured in an enterprise. The runner is then returned to the default group.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/remove-self-hosted-runner-from-group-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#remove-a-self-hosted-runner-from-a-group-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runners\":\n    get:\n      summary: List self-hosted runners for an enterprise\n      description: |-\n        Lists all self-hosted runners configured for an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/list-self-hosted-runners-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-self-hosted-runners-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\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: number\n                  runners:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/runner\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runners/downloads\":\n    get:\n      summary: List runner applications for an enterprise\n      description: |-\n        Lists binaries for the runner application that you can download and run.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/list-runner-applications-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#list-runner-applications-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/runner-application\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-application-items-airgap\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runners/registration-token\":\n    post:\n      summary: Create a registration token for an enterprise\n      description: |-\n        Returns a token that you can pass to the `config` script. The token expires after one hour.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n\n        #### Example using registration token\n\n        Configure your self-hosted runner, replacing `TOKEN` with the registration token provided by this endpoint.\n\n        ```\n        ./config.sh --url https://github.com/enterprises/octo-enterprise --token TOKEN\n        ```\n      operationId: enterprise-admin/create-registration-token-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#create-a-registration-token-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      responses:\n        '201':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authentication-token\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authentication-token\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runners/remove-token\":\n    post:\n      summary: Create a remove token for an enterprise\n      description: |-\n        Returns a token that you can pass to the `config` script to remove a self-hosted runner from an enterprise. The token expires after one hour.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n\n        #### Example using remove token\n\n        To remove your self-hosted runner from an enterprise, replace `TOKEN` with the remove token provided by this\n        endpoint.\n\n        ```\n        ./config.sh remove --token TOKEN\n        ```\n      operationId: enterprise-admin/create-remove-token-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#create-a-remove-token-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      responses:\n        '201':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authentication-token\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authentication-token-2\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/actions/runners/{runner_id}\":\n    get:\n      summary: Get a self-hosted runner for an enterprise\n      description: |-\n        Gets a specific self-hosted runner configured in an enterprise.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/get-self-hosted-runner-for-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-a-self-hosted-runner-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner\"\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n    delete:\n      summary: Delete a self-hosted runner from an enterprise\n      description: |-\n        Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.\n\n        You must authenticate using an access token with the `manage_runners:enterprise` scope to use this endpoint.\n      operationId: enterprise-admin/delete-self-hosted-runner-from-enterprise\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#delete-self-hosted-runner-from-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: false\n        githubCloudOnly: false\n        category: enterprise-admin\n        subcategory: actions\n  \"/enterprises/{enterprise}/audit-log\":\n    get:\n      summary: Get the audit log for an enterprise\n      operationId: enterprise-admin/get-audit-log\n      description: Gets the audit log for an enterprise. To use this endpoint, you\n        must be an enterprise admin, and you must use an access token with the `admin:enterprise`\n        scope.\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-the-audit-log-for-an-enterprise\n      parameters:\n      - \"$ref\": \"#/components/parameters/enterprise\"\n      - \"$ref\": \"#/components/parameters/audit-log-phrase\"\n      - \"$ref\": \"#/components/parameters/audit-log-after\"\n      - \"$ref\": \"#/components/parameters/audit-log-before\"\n      - \"$ref\": \"#/components/parameters/audit-log-order\"\n      - \"$ref\": \"#/components/parameters/page\"\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/audit-log-event\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/audit-log\"\n      x-github:\n        githubCloudOnly: true\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: audit-log\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: feeds\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/gists#create-a-gist\n      parameters: []\n      requestBody:\n        required: true\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                    default: false\n                  - type: string\n                    example: 'true'\n                    default: 'false'\n                    enum:\n                    - 'true'\n                    - 'false'\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-simple\"\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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: gists\n        subcategory:\n  \"/gists/{gist_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/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-simple\"\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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/gists/#update-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist-id\"\n      requestBody:\n        required: true\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                    nullable: true\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                    anyOf:\n                    - required:\n                      - content\n                    - required:\n                      - filename\n                    - type: object\n                      maxProperties: 0\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-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist\"\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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/gists#delete-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist-id\"\n      responses:\n        '204':\n          description: 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        category: gists\n        subcategory:\n  \"/gists/{gist_id}/comments\":\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://docs.github.com/enterprise-server@3.3/rest/reference/gists#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        category: gists\n        subcategory: 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://docs.github.com/enterprise-server@3.3/rest/reference/gists#create-a-gist-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist-id\"\n      requestBody:\n        required: true\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        category: gists\n        subcategory: comments\n  \"/gists/{gist_id}/comments/{comment_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/gists#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        category: gists\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/gists#update-a-gist-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist-id\"\n      - \"$ref\": \"#/components/parameters/comment-id\"\n      requestBody:\n        required: true\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        category: gists\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/gists#delete-a-gist-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist-id\"\n      - \"$ref\": \"#/components/parameters/comment-id\"\n      responses:\n        '204':\n          description: 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        category: gists\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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-simple\"\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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: gists\n        subcategory:\n  \"/gists/{gist_id}/star\":\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://docs.github.com/enterprise-server@3.3/rest/reference/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: Not Found 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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\"\n      tags:\n      - gists\n      operationId: gists/star\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/gists#star-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist-id\"\n      responses:\n        '204':\n          description: 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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/gists#unstar-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist-id\"\n      responses:\n        '204':\n          description: 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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/gists#get-a-gist-revision\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist-id\"\n      - name: sha\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-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist\"\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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: gitignore\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/) to get the raw contents.\n      operationId: gitignore/get-template\n      tags:\n      - gitignore\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/gitignore#get-a-gitignore-template\n      parameters:\n      - name: name\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        category: gitignore\n        subcategory:\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps#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                required:\n                - total_count\n                - repositories\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        category: apps\n        subcategory: installations\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://docs.github.com/enterprise-server@3.3/rest/reference/apps#create-an-installation-access-token-for-an-app)\" endpoint.\n\n        You must use an [installation access token](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps#revoke-an-installation-access-token\n      parameters: []\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: apps\n        subcategory: installations\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.\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#list-pull-requests)\" endpoint.\n      tags:\n      - issues\n      operationId: issues/list\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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` or `repos`: All issues the authenticated\n          user 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          - repos\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        category: issues\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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      - \"$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/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        category: licenses\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/licenses#get-a-license\n      parameters:\n      - name: license\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        category: licenses\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/markdown#render-a-markdown-document\n      parameters: []\n      requestBody:\n        required: true\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. Can be either `markdown` or `gfm`.\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.  For example, setting `context` to `octo-org/octo-repo`\n                    will change the text `#42` into an HTML link to issue 42 in the\n                    `octo-org/octo-repo` repository.\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          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        category: markdown\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/markdown#render-a-markdown-document-in-raw-mode\n      parameters: []\n      requestBody:\n        required: false\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        category: markdown\n        subcategory:\n  \"/meta\":\n    get:\n      summary: Get GitHub Enterprise Server meta information\n      description: ''\n      tags:\n      - meta\n      operationId: meta/get\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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        category: meta\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: notifications\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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://docs.github.com/enterprise-server@3.3/rest/reference/activity#mark-notifications-as-read\n      parameters: []\n      requestBody:\n        required: false\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: Reset Content\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        category: activity\n        subcategory: notifications\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: notifications\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#mark-a-thread-as-read\n      parameters:\n      - \"$ref\": \"#/components/parameters/thread-id\"\n      responses:\n        '205':\n          description: Reset Content\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        category: activity\n        subcategory: notifications\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: notifications\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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://docs.github.com/enterprise-server@3.3/rest/reference/activity#set-a-thread-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/thread-id\"\n      requestBody:\n        required: false\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        category: activity\n        subcategory: notifications\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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://docs.github.com/enterprise-server@3.3/rest/reference/activity#delete-a-thread-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/thread-id\"\n      responses:\n        '204':\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        category: activity\n        subcategory: notifications\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      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/meta#get-octocat\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: meta\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#list-organizations\n      parameters:\n      - \"$ref\": \"#/components/parameters/since-org\"\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        category: orgs\n        subcategory:\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://docs.github.com/enterprise-server@3.3/apps/building-github-apps/authenticating-with-github-apps/)\" for details. For an example response, see 'Response with GitHub Enterprise Server plan information' below.\"\n      tags:\n      - orgs\n      operationId: orgs/get\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory:\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/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://docs.github.com/enterprise-server@3.3/rest/reference/orgs/#update-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        required: false\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 the parameter deprecation notice in the operation description\n                    for details.\"\n                  enum:\n                  - all\n                  - private\n                  - none\n                members_can_create_pages:\n                  type: boolean\n                  description: \"Toggles whether organization members can create GitHub\n                    Pages sites. Can be one of:  \\n\\\\* `true` - all organization members\n                    can create GitHub Pages sites.  \\n\\\\* `false` - no organization\n                    members can create GitHub Pages sites. Existing published sites\n                    will not be impacted.\"\n                  default: true\n                members_can_fork_private_repositories:\n                  type: boolean\n                  description: \"Toggles whether organization members can fork private\n                    organization repositories. Can be one of:  \\n\\\\* `true` - all\n                    organization members can fork private repositories within the\n                    organization.  \\n\\\\* `false` - no organization members can fork\n                    private repositories within the organization.\"\n                  default: false\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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory:\n  \"/orgs/{org}/actions/permissions\":\n    get:\n      summary: Get GitHub Actions permissions for an organization\n      description: |-\n        Gets the GitHub Actions permissions policy for repositories and allowed actions in an organization.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.\n      operationId: actions/get-github-actions-permissions-organization\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-github-actions-permissions-for-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/actions-organization-permissions\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-organization-permissions\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n    put:\n      summary: Set GitHub Actions permissions for an organization\n      description: |-\n        Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.\n\n        If the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as `allowed_actions` to `selected` actions, then you cannot override them for the organization.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.\n      operationId: actions/set-github-actions-permissions-organization\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-github-actions-permissions-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                enabled_repositories:\n                  \"$ref\": \"#/components/schemas/enabled-repositories\"\n                allowed_actions:\n                  \"$ref\": \"#/components/schemas/allowed-actions\"\n              required:\n              - enabled_repositories\n            example:\n              enabled_repositories: all\n              allowed_actions: selected\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n  \"/orgs/{org}/actions/permissions/repositories\":\n    get:\n      summary: List selected repositories enabled for GitHub Actions in an organization\n      description: |-\n        Lists the selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for `enabled_repositories` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.\n      operationId: actions/list-selected-repositories-enabled-github-actions-organization\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-selected-repositories-enabled-for-github-actions-in-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                required:\n                - total_count\n                - repositories\n                properties:\n                  total_count:\n                    type: number\n                  repositories:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-paginated\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n    put:\n      summary: Set selected repositories enabled for GitHub Actions in an organization\n      description: |-\n        Replaces the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for `enabled_repositories` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.\n      operationId: actions/set-selected-repositories-enabled-github-actions-organization\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-selected-repositories-enabled-for-github-actions-in-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                selected_repository_ids:\n                  description: List of repository IDs to enable for GitHub Actions.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the repository.\n              required:\n              - selected_repository_ids\n            example:\n              selected_repository_ids:\n              - 32\n              - 42\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n  \"/orgs/{org}/actions/permissions/repositories/{repository_id}\":\n    put:\n      summary: Enable a selected repository for GitHub Actions in an organization\n      description: |-\n        Adds a repository to the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for `enabled_repositories` must be must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.\n      operationId: actions/enable-selected-repository-github-actions-organization\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#enable-a-selected-repository-for-github-actions-in-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n    delete:\n      summary: Disable a selected repository for GitHub Actions in an organization\n      description: |-\n        Removes a repository from the list of selected repositories that are enabled for GitHub Actions in an organization. To use this endpoint, the organization permission policy for `enabled_repositories` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.\n      operationId: actions/disable-selected-repository-github-actions-organization\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#disable-a-selected-repository-for-github-actions-in-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n  \"/orgs/{org}/actions/permissions/selected-actions\":\n    get:\n      summary: Get allowed actions for an organization\n      description: |-\n        Gets the selected actions that are allowed in an organization. To use this endpoint, the organization permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\"\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.\n      operationId: actions/get-allowed-actions-organization\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-allowed-actions-for-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/selected-actions\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/selected-actions\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n    put:\n      summary: Set allowed actions for an organization\n      description: |-\n        Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\n\n        If the organization belongs to an enterprise that has `selected` actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.\n\n        To use the `patterns_allowed` setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the `patterns_allowed` setting only applies to public repositories in the organization.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.\n      operationId: actions/set-allowed-actions-organization\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-allowed-actions-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              \"$ref\": \"#/components/schemas/selected-actions\"\n            examples:\n              selected_actions:\n                \"$ref\": \"#/components/examples/selected-actions\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n  \"/orgs/{org}/actions/runner-groups\":\n    get:\n      summary: List self-hosted runner groups for an organization\n      description: |-\n        Lists all self-hosted runner groups configured in an organization and inherited from an enterprise.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/list-self-hosted-runner-groups-for-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-self-hosted-runner-groups-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                required:\n                - total_count\n                - runner_groups\n                properties:\n                  total_count:\n                    type: number\n                  runner_groups:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/runner-groups-org\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-groups-org\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n    post:\n      summary: Create a self-hosted runner group for an organization\n      description: |-\n        The self-hosted runner groups REST API is available with GitHub Enterprise Cloud and GitHub Enterprise Server. For more information, see \"[GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products).\"\n\n        Creates a new self-hosted runner group for an organization.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/create-self-hosted-runner-group-for-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-a-self-hosted-runner-group-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  description: Name of the runner group.\n                  type: string\n                visibility:\n                  description: 'Visibility of a runner group. You can select all repositories,\n                    select individual repositories, or limit access to private repositories.\n                    Can be one of: `all`, `selected`, or `private`.'\n                  type: string\n                  enum:\n                  - selected\n                  - all\n                  - private\n                  default: all\n                selected_repository_ids:\n                  description: List of repository IDs that can access the runner group.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the repository.\n                runners:\n                  description: List of runner IDs to add to the runner group.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the runner.\n                allows_public_repositories:\n                  description: Whether the runner group can be used by `public` repositories.\n                  type: boolean\n                  default: false\n              required:\n              - name\n            example:\n              name: Expensive hardware runners\n              visibility: selected\n              selected_repository_ids:\n              - 32\n              - 91\n              runners:\n              - 9\n              - 2\n      responses:\n        '201':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner-groups-org\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-group\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n  \"/orgs/{org}/actions/runner-groups/{runner_group_id}\":\n    get:\n      summary: Get a self-hosted runner group for an organization\n      description: |-\n        Gets a specific self-hosted runner group for an organization.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/get-self-hosted-runner-group-for-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-self-hosted-runner-group-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner-groups-org\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-group-item\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n    patch:\n      summary: Update a self-hosted runner group for an organization\n      description: |-\n        Updates the `name` and `visibility` of a self-hosted runner group in an organization.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/update-self-hosted-runner-group-for-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#update-a-self-hosted-runner-group-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  description: Name of the runner group.\n                  type: string\n                visibility:\n                  description: 'Visibility of a runner group. You can select all repositories,\n                    select individual repositories, or all private repositories. Can\n                    be one of: `all`, `selected`, or `private`.'\n                  type: string\n                  enum:\n                  - selected\n                  - all\n                  - private\n                allows_public_repositories:\n                  description: Whether the runner group can be used by `public` repositories.\n                  type: boolean\n                  default: false\n              required:\n              - name\n            example:\n              name: Expensive hardware runners\n              visibility: selected\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner-groups-org\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-group\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n    delete:\n      summary: Delete a self-hosted runner group from an organization\n      description: |-\n        Deletes a self-hosted runner group for an organization.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/delete-self-hosted-runner-group-from-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-a-self-hosted-runner-group-from-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n  \"/orgs/{org}/actions/runner-groups/{runner_group_id}/repositories\":\n    get:\n      summary: List repository access to a self-hosted runner group in an organization\n      description: |-\n        The self-hosted runner groups REST API is available with GitHub Enterprise Cloud and GitHub Enterprise Server. For more information, see \"[GitHub's products](https://docs.github.com/github/getting-started-with-github/githubs-products).\"\n\n        Lists the repositories with access to a self-hosted runner group configured in an organization.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/list-repo-access-to-self-hosted-runner-group-in-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-repository-access-to-a-self-hosted-runner-group-in-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: object\n                required:\n                - total_count\n                - repositories\n                properties:\n                  total_count:\n                    type: number\n                  repositories:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/minimal-repository-paginated\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n    put:\n      summary: Set repository access for a self-hosted runner group in an organization\n      description: |-\n        Replaces the list of repositories that have access to a self-hosted runner group configured in an organization.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/set-repo-access-to-self-hosted-runner-group-in-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-repository-access-to-a-self-hosted-runner-group-in-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                selected_repository_ids:\n                  description: List of repository IDs that can access the runner group.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the repository.\n              required:\n              - selected_repository_ids\n            example:\n              selected_repository_ids:\n              - 32\n              - 91\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n  \"/orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}\":\n    put:\n      summary: Add repository access to a self-hosted runner group in an organization\n      description: |-\n        Adds a repository to the list of selected repositories that can access a self-hosted runner group. The runner group must have `visibility` set to `selected`. For more information, see \"[Create a self-hosted runner group for an organization](#create-a-self-hosted-runner-group-for-an-organization).\"\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/add-repo-access-to-self-hosted-runner-group-in-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#add-repository-acess-to-a-self-hosted-runner-group-in-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: true\n        category: actions\n        subcategory: self-hosted-runner-groups\n    delete:\n      summary: Remove repository access to a self-hosted runner group in an organization\n      description: |-\n        Removes a repository from the list of selected repositories that can access a self-hosted runner group. The runner group must have `visibility` set to `selected`. For more information, see \"[Create a self-hosted runner group for an organization](#create-a-self-hosted-runner-group-for-an-organization).\"\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/remove-repo-access-to-self-hosted-runner-group-in-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n  \"/orgs/{org}/actions/runner-groups/{runner_group_id}/runners\":\n    get:\n      summary: List self-hosted runners in a group for an organization\n      description: |-\n        Lists self-hosted runners that are in a specific organization group.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/list-self-hosted-runners-in-group-for-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-self-hosted-runners-in-a-group-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-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: object\n                required:\n                - total_count\n                - runners\n                properties:\n                  total_count:\n                    type: number\n                  runners:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/runner\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n    put:\n      summary: Set self-hosted runners in a group for an organization\n      description: |-\n        Replaces the list of self-hosted runners that are part of an organization runner group.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/set-self-hosted-runners-in-group-for-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                runners:\n                  description: List of runner IDs to add to the runner group.\n                  type: array\n                  items:\n                    type: integer\n                    description: Unique identifier of the runner.\n              required:\n              - runners\n            example:\n              runners:\n              - 9\n              - 2\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n  \"/orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}\":\n    put:\n      summary: Add a self-hosted runner to a group for an organization\n      description: |-\n        Adds a self-hosted runner to a runner group configured in an organization.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/add-self-hosted-runner-to-group-for-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#add-a-self-hosted-runner-to-a-group-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n    delete:\n      summary: Remove a self-hosted runner from a group for an organization\n      description: |-\n        Removes a self-hosted runner from a group configured in an organization. The runner is then returned to the default group.\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      operationId: actions/remove-self-hosted-runner-from-group-for-org\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-group-id\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: self-hosted-runner-groups\n  \"/orgs/{org}/actions/runners\":\n    get:\n      summary: List self-hosted runners for an organization\n      description: |-\n        Lists all self-hosted runners configured in an organization.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-self-hosted-runners-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-self-hosted-runners-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                required:\n                - total_count\n                - runners\n                properties:\n                  total_count:\n                    type: integer\n                  runners:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/runner\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/orgs/{org}/actions/runners/downloads\":\n    get:\n      summary: List runner applications for an organization\n      description: |-\n        Lists binaries for the runner application that you can download and run.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-runner-applications-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-runner-applications-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/runner-application\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-application-items-airgap\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/orgs/{org}/actions/runners/registration-token\":\n    post:\n      summary: Create a registration token for an organization\n      description: |-\n        Returns a token that you can pass to the `config` script. The token expires after one hour.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n\n        #### Example using registration token\n\n        Configure your self-hosted runner, replacing `TOKEN` with the registration token provided by this endpoint.\n\n        ```\n        ./config.sh --url https://github.com/octo-org --token TOKEN\n        ```\n      tags:\n      - actions\n      operationId: actions/create-registration-token-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-a-registration-token-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '201':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authentication-token\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authentication-token\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/orgs/{org}/actions/runners/remove-token\":\n    post:\n      summary: Create a remove token for an organization\n      description: |-\n        Returns a token that you can pass to the `config` script to remove a self-hosted runner from an organization. The token expires after one hour.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n\n        #### Example using remove token\n\n        To remove your self-hosted runner from an organization, replace `TOKEN` with the remove token provided by this\n        endpoint.\n\n        ```\n        ./config.sh remove --token TOKEN\n        ```\n      tags:\n      - actions\n      operationId: actions/create-remove-token-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-a-remove-token-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '201':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authentication-token\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authentication-token-2\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/orgs/{org}/actions/runners/{runner_id}\":\n    get:\n      summary: Get a self-hosted runner for an organization\n      description: |-\n        Gets a specific self-hosted runner configured in an organization.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-self-hosted-runner-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-self-hosted-runner-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n    delete:\n      summary: Delete a self-hosted runner from an organization\n      description: |-\n        Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.\n\n        You must authenticate using an access token with the `admin:org` scope to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/delete-self-hosted-runner-from-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-a-self-hosted-runner-from-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/orgs/{org}/actions/secrets\":\n    get:\n      summary: List organization secrets\n      description: Lists all secrets available in an organization without revealing\n        their encrypted values. You must authenticate using an access token with the\n        `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets`\n        organization permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-org-secrets\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-organization-secrets\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                required:\n                - total_count\n                - secrets\n                properties:\n                  total_count:\n                    type: integer\n                  secrets:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/organization-actions-secret\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-actions-secret-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/orgs/{org}/actions/secrets/public-key\":\n    get:\n      summary: Get an organization public key\n      description: Gets your public key, which you need to encrypt secrets. You need\n        to encrypt a secret before you can create or update secrets. You must authenticate\n        using an access token with the `admin:org` scope to use this endpoint. GitHub\n        Apps must have the `secrets` organization permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-org-public-key\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-an-organization-public-key\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/actions-public-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-public-key\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/orgs/{org}/actions/secrets/{secret_name}\":\n    get:\n      summary: Get an organization secret\n      description: Gets a single organization secret without revealing its encrypted\n        value. You must authenticate using an access token with the `admin:org` scope\n        to use this endpoint. GitHub Apps must have the `secrets` organization permission\n        to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-org-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-an-organization-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/organization-actions-secret\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-actions-secret\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n    put:\n      summary: Create or update an organization secret\n      description: |-\n        Creates or updates an organization secret with an encrypted value. Encrypt your secret using\n        [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\n        token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `secrets` organization permission to\n        use this endpoint.\n\n        #### Example encrypting a secret using Node.js\n\n        Encrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n        ```\n        const sodium = require('tweetsodium');\n\n        const key = \"base64-encoded-public-key\";\n        const value = \"plain-text-secret\";\n\n        // Convert the message and key to Uint8Array's (Buffer implements that interface)\n        const messageBytes = Buffer.from(value);\n        const keyBytes = Buffer.from(key, 'base64');\n\n        // Encrypt using LibSodium.\n        const encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n        // Base64 the encrypted secret\n        const encrypted = Buffer.from(encryptedBytes).toString('base64');\n\n        console.log(encrypted);\n        ```\n\n\n        #### Example encrypting a secret using Python\n\n        Encrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n        ```\n        from base64 import b64encode\n        from nacl import encoding, public\n\n        def encrypt(public_key: str, secret_value: str) -> str:\n          \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n          public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n          sealed_box = public.SealedBox(public_key)\n          encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n          return b64encode(encrypted).decode(\"utf-8\")\n        ```\n\n        #### Example encrypting a secret using C#\n\n        Encrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n        ```\n        var secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\n        var publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\n        var sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\n        Console.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n        ```\n\n        #### Example encrypting a secret using Ruby\n\n        Encrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n        ```ruby\n        require \"rbnacl\"\n        require \"base64\"\n\n        key = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\n        public_key = RbNaCl::PublicKey.new(key)\n\n        box = RbNaCl::Boxes::Sealed.from_public_key(public_key)\n        encrypted_secret = box.encrypt(\"my_secret\")\n\n        # Print the base64 encoded secret\n        puts Base64.strict_encode64(encrypted_secret)\n        ```\n      tags:\n      - actions\n      operationId: actions/create-or-update-org-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-or-update-an-organization-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                encrypted_value:\n                  type: string\n                  description: Value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages)\n                    using the public key retrieved from the [Get an organization public\n                    key](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-an-organization-public-key)\n                    endpoint.\n                  pattern: \"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$\"\n                key_id:\n                  type: string\n                  description: ID of the key you used to encrypt the secret.\n                visibility:\n                  type: string\n                  description: \"Configures the access that repositories have to the\n                    organization secret. Can be one of:  \\n\\\\- `all` - All repositories\n                    in an organization can access the secret.  \\n\\\\- `private` - Private\n                    repositories in an organization can access the secret.  \\n\\\\-\n                    `selected` - Only specific repositories can access the secret.\"\n                  enum:\n                  - all\n                  - private\n                  - selected\n                selected_repository_ids:\n                  type: array\n                  description: An array of repository ids that can access the organization\n                    secret. You can only provide a list of repository ids when the\n                    `visibility` is set to `selected`. You can manage the list of\n                    selected repositories using the [List selected repositories for\n                    an organization secret](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-selected-repositories-for-an-organization-secret),\n                    [Set selected repositories for an organization secret](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-selected-repositories-for-an-organization-secret),\n                    and [Remove selected repository from an organization secret](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#remove-selected-repository-from-an-organization-secret)\n                    endpoints.\n                  items:\n                    type: string\n              required:\n              - visibility\n            example:\n              encrypted_value: c2VjcmV0\n              key_id: '012345678912345678'\n              visibility: selected\n              selected_repository_ids:\n              - '1296269'\n              - '1296280'\n      responses:\n        '201':\n          description: Response when creating a secret\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/empty-object\"\n        '204':\n          description: Response when updating a secret\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n    delete:\n      summary: Delete an organization secret\n      description: Deletes a secret in an organization using the secret name. You\n        must authenticate using an access token with the `admin:org` scope to use\n        this endpoint. GitHub Apps must have the `secrets` organization permission\n        to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/delete-org-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-an-organization-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/orgs/{org}/actions/secrets/{secret_name}/repositories\":\n    get:\n      summary: List selected repositories for an organization secret\n      description: Lists all repositories that have been selected when the `visibility`\n        for repository access to a secret is set to `selected`. You must authenticate\n        using an access token with the `admin:org` scope to use this endpoint. GitHub\n        Apps must have the `secrets` organization permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-selected-repos-for-org-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-selected-repositories-for-an-organization-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: object\n                required:\n                - total_count\n                - repositories\n                properties:\n                  total_count:\n                    type: integer\n                  repositories:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/public-repository-paginated\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n    put:\n      summary: Set selected repositories for an organization secret\n      description: Replaces all repositories for an organization secret when the `visibility`\n        for repository access is set to `selected`. The visibility is set when you\n        [Create or update an organization secret](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-or-update-an-organization-secret).\n        You must authenticate using an access token with the `admin:org` scope to\n        use this endpoint. GitHub Apps must have the `secrets` organization permission\n        to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/set-selected-repos-for-org-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-selected-repositories-for-an-organization-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                selected_repository_ids:\n                  type: array\n                  description: An array of repository ids that can access the organization\n                    secret. You can only provide a list of repository ids when the\n                    `visibility` is set to `selected`. You can add and remove individual\n                    repositories using the [Set selected repositories for an organization\n                    secret](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-selected-repositories-for-an-organization-secret)\n                    and [Remove selected repository from an organization secret](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#remove-selected-repository-from-an-organization-secret)\n                    endpoints.\n                  items:\n                    type: integer\n              required:\n              - selected_repository_ids\n            example:\n              selected_repository_ids:\n              - 64780797\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}\":\n    put:\n      summary: Add selected repository to an organization secret\n      description: Adds a repository to an organization secret when the `visibility`\n        for repository access is set to `selected`. The visibility is set when you\n        [Create or update an organization secret](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-or-update-an-organization-secret).\n        You must authenticate using an access token with the `admin:org` scope to\n        use this endpoint. GitHub Apps must have the `secrets` organization permission\n        to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/add-selected-repo-to-org-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#add-selected-repository-to-an-organization-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      - name: repository_id\n        in: path\n        required: true\n        schema:\n          type: integer\n      responses:\n        '204':\n          description: No Content when repository was added to the selected list\n        '409':\n          description: Conflict when visibility type is not set to selected\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n    delete:\n      summary: Remove selected repository from an organization secret\n      description: Removes a repository from an organization secret when the `visibility`\n        for repository access is set to `selected`. The visibility is set when you\n        [Create or update an organization secret](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-or-update-an-organization-secret).\n        You must authenticate using an access token with the `admin:org` scope to\n        use this endpoint. GitHub Apps must have the `secrets` organization permission\n        to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/remove-selected-repo-from-org-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#remove-selected-repository-from-an-organization-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      - name: repository_id\n        in: path\n        required: true\n        schema:\n          type: integer\n      responses:\n        '204':\n          description: Response when repository was removed from the selected list\n        '409':\n          description: Conflict when visibility type not set to selected\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/orgs/{org}/audit-log\":\n    get:\n      summary: Get the audit log for an organization\n      description: |-\n        Gets the audit log for an organization. For more information, see \"[Reviewing the audit log for your organization](https://docs.github.com/enterprise-server@3.3/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization).\"\n\n        To use this endpoint, you must be an organization owner, and you must use an access token with the `admin:org` scope. GitHub Apps must have the `organization_administration` read permission to use this endpoint.\n      operationId: orgs/get-audit-log\n      tags:\n      - orgs\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#get-audit-log\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/audit-log-phrase\"\n      - \"$ref\": \"#/components/parameters/audit-log-after\"\n      - \"$ref\": \"#/components/parameters/audit-log-before\"\n      - \"$ref\": \"#/components/parameters/audit-log-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: array\n                items:\n                  \"$ref\": \"#/components/schemas/audit-log-event\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/audit-log\"\n      x-github:\n        githubCloudOnly: true\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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        category: orgs\n        subcategory: webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#create-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        required: true\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#create-hook-config-params).\n                  properties:\n                    url:\n                      \"$ref\": \"#/components/schemas/webhook-config-url\"\n                    content_type:\n                      \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n                    secret:\n                      \"$ref\": \"#/components/schemas/webhook-config-secret\"\n                    insecure_ssl:\n                      \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\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://docs.github.com/enterprise-server@3.3/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        category: orgs\n        subcategory: webhooks\n  \"/orgs/{org}/hooks/{hook_id}\":\n    get:\n      summary: Get an organization webhook\n      description: Returns a webhook configured in an organization. To get only the\n        webhook `config` properties, see \"[Get a webhook configuration for an organization](/rest/reference/orgs#get-a-webhook-configuration-for-an-organization).\"\n      tags:\n      - orgs\n      operationId: orgs/get-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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        category: orgs\n        subcategory: webhooks\n    patch:\n      summary: Update an organization webhook\n      description: Updates a webhook configured in an organization. When you update\n        a webhook, the `secret` will be overwritten. If you previously had a `secret`\n        set, you must provide the same `secret` or set a new `secret` or the secret\n        will be removed. If you are only updating individual webhook `config` properties,\n        use \"[Update a webhook configuration for an organization](/rest/reference/orgs#update-a-webhook-configuration-for-an-organization).\"\n      tags:\n      - orgs\n      operationId: orgs/update-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#update-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      requestBody:\n        required: false\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#update-hook-config-params).\n                  properties:\n                    url:\n                      \"$ref\": \"#/components/schemas/webhook-config-url\"\n                    content_type:\n                      \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n                    secret:\n                      \"$ref\": \"#/components/schemas/webhook-config-secret\"\n                    insecure_ssl:\n                      \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\n                  required:\n                  - url\n                events:\n                  type: array\n                  description: Determines what [events](https://docs.github.com/enterprise-server@3.3/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        category: orgs\n        subcategory: webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#delete-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: webhooks\n  \"/orgs/{org}/hooks/{hook_id}/config\":\n    get:\n      summary: Get a webhook configuration for an organization\n      description: |-\n        Returns the webhook configuration for an organization. To get more information about the webhook, including the `active` state and `events`, use \"[Get an organization webhook ](/rest/reference/orgs#get-an-organization-webhook).\"\n\n        Access tokens must have the `admin:org_hook` scope, and GitHub Apps must have the `organization_hooks:read` permission.\n      tags:\n      - orgs\n      operationId: orgs/get-webhook-config-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#get-a-webhook-configuration-for-an-organization\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/webhook-config\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/webhook-config\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: webhooks\n    patch:\n      summary: Update a webhook configuration for an organization\n      description: |-\n        Updates the webhook configuration for an organization. To update more information about the webhook, including the `active` state and `events`, use \"[Update an organization webhook ](/rest/reference/orgs#update-an-organization-webhook).\"\n\n        Access tokens must have the `admin:org_hook` scope, and GitHub Apps must have the `organization_hooks:write` permission.\n      tags:\n      - orgs\n      operationId: orgs/update-webhook-config-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#update-a-webhook-configuration-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                url:\n                  \"$ref\": \"#/components/schemas/webhook-config-url\"\n                content_type:\n                  \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n                secret:\n                  \"$ref\": \"#/components/schemas/webhook-config-secret\"\n                insecure_ssl:\n                  \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\n              example:\n                content_type: json\n                insecure_ssl: '0'\n                secret: \"********\"\n                url: https://example.com/webhook\n              additionalProperties: false\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/webhook-config\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/webhook-config\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: webhooks\n  \"/orgs/{org}/hooks/{hook_id}/deliveries\":\n    get:\n      summary: List deliveries for an organization webhook\n      description: Returns a list of webhook deliveries for a webhook configured in\n        an organization.\n      tags:\n      - orgs\n      operationId: orgs/list-webhook-deliveries\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#list-deliveries-for-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/cursor\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/hook-delivery-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook-delivery-items\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: webhooks\n  \"/orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}\":\n    get:\n      summary: Get a webhook delivery for an organization webhook\n      description: Returns a delivery for a webhook configured in an organization.\n      tags:\n      - orgs\n      operationId: orgs/get-webhook-delivery\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#get-a-webhook-delivery-for-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      - \"$ref\": \"#/components/parameters/delivery-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/hook-delivery\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook-delivery\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: webhooks\n  \"/orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts\":\n    post:\n      summary: Redeliver a delivery for an organization webhook\n      description: Redeliver a delivery for a webhook configured in an organization.\n      tags:\n      - orgs\n      operationId: orgs/redeliver-webhook-delivery\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#redeliver-a-delivery-for-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      - \"$ref\": \"#/components/parameters/delivery-id\"\n      responses:\n        '202':\n          \"$ref\": \"#/components/responses/accepted\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: webhooks\n  \"/orgs/{org}/hooks/{hook_id}/pings\":\n    post:\n      summary: Ping an organization webhook\n      description: This will trigger a [ping event](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#ping-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: webhooks\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: apps\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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                required:\n                - total_count\n                - installations\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        category: orgs\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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` or `repos`: All issues the authenticated\n          user 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          - repos\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        category: issues\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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: Not Found if requester is an organization member and user is\n            not a member\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#remove-an-organization-member\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: members\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. The `state` parameter in the response\n        can be used to identify the user's membership status.\n      tags:\n      - orgs\n      operationId: orgs/get-membership-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#set-organization-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      requestBody:\n        required: false\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-already-had-membership-with-organization:\n                  \"$ref\": \"#/components/examples/org-membership-response-if-user-has-an-active-admin-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        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#remove-organization-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: 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        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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        category: orgs\n        subcategory: outside-collaborators\n  \"/orgs/{org}/outside_collaborators/{username}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n        '204':\n          description: User was converted\n        '403':\n          description: Forbidden if user is the last owner of the organization or\n            not a member of the organization\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: outside-collaborators\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#remove-outside-collaborator-from-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n        '422':\n          description: Unprocessable Entity 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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#remove-outside-collaborator\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: outside-collaborators\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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      - \"$ref\": \"#/components/parameters/direction\"\n      - name: sort\n        description: The sort order for the response collection.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - name\n          default: created\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        category: enterprise-admin\n        subcategory: org-pre-receive-hooks\n  \"/orgs/{org}/pre-receive-hooks/{pre_receive_hook_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: org-pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: org-pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: org-pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#create-an-organization-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        required: true\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        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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        category: orgs\n        subcategory: members\n  \"/orgs/{org}/public_members/{username}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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: Not Found if user is not a public member\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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: Response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/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          Note: For GitHub AE, can be one of `all`, `private`, `forks`, `sources`,\n          `member`, `internal`. Default: `all`. If your organization is associated\n          with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise\n          Server 2.20+, `type` can also be `internal`. However, the `internal` value\n          is not yet supported when a GitHub App calls this API with an installation\n          access token.'\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        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/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. Note: For GitHub AE, use `repo` scope to create an internal 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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-an-organization-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        required: true\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: Whether the repository is 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`. Note: For GitHub Enterprise Server and GitHub AE,\n                    this endpoint will only list repositories available to all users\n                    on the enterprise. 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.'\n                  enum:\n                  - public\n                  - private\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                allow_auto_merge:\n                  type: boolean\n                  description: Either `true` to allow auto-merge on pull requests,\n                    or `false` to disallow auto-merge.\n                  default: false\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        category: repos\n        subcategory:\n  \"/orgs/{org}/secret-scanning/alerts\":\n    get:\n      summary: List secret scanning alerts for an organization\n      description: |-\n        Lists secret scanning alerts for eligible repositories in an organization, from newest to oldest.\n        To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\n        GitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.\n      tags:\n      - secret-scanning\n      operationId: secret-scanning/list-alerts-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#list-secret-scanning-alerts-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/secret-scanning-alert-state\"\n      - \"$ref\": \"#/components/parameters/secret-scanning-alert-secret-type\"\n      - \"$ref\": \"#/components/parameters/secret-scanning-alert-resolution\"\n      - \"$ref\": \"#/components/parameters/page\"\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-secret-scanning-alert\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-secret-scanning-alert-list\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: secret-scanning\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: teams\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        required: true\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        category: teams\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: teams\n        subcategory:\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:** You can also specify a team by `org_id` and `team_id` using the route `PATCH /organizations/{org_id}/team/{team_id}`.\n      tags:\n      - teams\n      operationId: teams/update-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#update-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      requestBody:\n        required: false\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                    When a team is nested, the `privacy` for parent teams cannot be\n                    `secret`. The options are:  \\n**For a non-nested team:**  \\n\\\\*\n                    `secret` - only visible to organization owners and members of\n                    this team.  \\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.\n                  nullable: true\n            example:\n              name: new team name\n              description: new team description\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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory:\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, deleting a parent team will delete all of its child teams as well.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}`.\n      tags:\n      - teams\n      operationId: teams/delete-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#delete-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/discussions\":\n    get:\n      summary: List discussions\n      description: |-\n        List all discussions on a team's page. OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\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}/discussions`.\n      tags:\n      - teams\n      operationId: teams/list-discussions-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-discussions\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - name: pinned\n        in: query\n        required: false\n        description: Pinned discussions only filter\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/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        category: teams\n        subcategory: 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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `POST /organizations/{org_id}/team/{team_id}/discussions`.\n      tags:\n      - teams\n      operationId: teams/create-discussion-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-discussion\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      requestBody:\n        required: true\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      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      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: discussions\n  \"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}\":\n    get:\n      summary: Get a discussion\n      description: |-\n        Get a specific discussion on a team's page. OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\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}/discussions/{discussion_number}`.\n      tags:\n      - teams\n      operationId: teams/get-discussion-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-a-discussion\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\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        category: teams\n        subcategory: discussions\n    patch:\n      summary: Update a discussion\n      description: |-\n        Edits the title and body text of a discussion post. Only the parameters you provide are updated. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `PATCH /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}`.\n      tags:\n      - teams\n      operationId: teams/update-discussion-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#update-a-discussion\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      requestBody:\n        required: false\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      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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: discussions\n    delete:\n      summary: Delete a discussion\n      description: |-\n        Delete a discussion from a team's page. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}`.\n      tags:\n      - teams\n      operationId: teams/delete-discussion-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#delete-a-discussion\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: discussions\n  \"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments\":\n    get:\n      summary: List discussion comments\n      description: |-\n        List all comments on a team discussion. OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\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}/discussions/{discussion_number}/comments`.\n      tags:\n      - teams\n      operationId: teams/list-discussion-comments-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-discussion-comments\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\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        category: teams\n        subcategory: discussion-comments\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `POST /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments`.\n      tags:\n      - teams\n      operationId: teams/create-discussion-comment-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-discussion-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      requestBody:\n        required: true\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      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      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: discussion-comments\n  \"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}\":\n    get:\n      summary: Get a discussion comment\n      description: |-\n        Get a specific comment on a team discussion. OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\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}/discussions/{discussion_number}/comments/{comment_number}`.\n      tags:\n      - teams\n      operationId: teams/get-discussion-comment-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-a-discussion-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\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        category: teams\n        subcategory: discussion-comments\n    patch:\n      summary: Update a discussion comment\n      description: |-\n        Edits the body text of a discussion comment. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `PATCH /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}`.\n      tags:\n      - teams\n      operationId: teams/update-discussion-comment-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#update-a-discussion-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      requestBody:\n        required: true\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      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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: discussion-comments\n    delete:\n      summary: Delete a discussion comment\n      description: |-\n        Deletes a comment on a team discussion. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/discussions/{discussion_number}/comments/{comment_number}`.\n      tags:\n      - teams\n      operationId: teams/delete-discussion-comment-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#delete-a-discussion-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: discussion-comments\n  \"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions\":\n    get:\n      summary: List reactions for a team discussion comment\n      description: |-\n        List the reactions to a [team discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussion-comments/). OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\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/discussions/:discussion_number/comments/:comment_number/reactions`.\n      tags:\n      - reactions\n      operationId: reactions/list-for-team-discussion-comment-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#list-reactions-for-a-team-discussion-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      - name: content\n        description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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        category: reactions\n        subcategory:\n    post:\n      summary: Create reaction for a team discussion comment\n      description: |-\n        Create a reaction to a [team discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussion-comments). OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/). A response with an HTTP `200` status means that you already added the reaction type to this team discussion comment.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `POST /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions`.\n      tags:\n      - reactions\n      operationId: reactions/create-for-team-discussion-comment-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#create-reaction-for-a-team-discussion-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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      responses:\n        '200':\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        '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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}\":\n    delete:\n      summary: Delete team discussion comment reaction\n      description: |-\n        **Note:** You can also specify a team or organization with `team_id` and `org_id` using the route `DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id`.\n\n        Delete a reaction to a [team discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussion-comments). OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - reactions\n      operationId: reactions/delete-for-team-discussion-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#delete-team-discussion-comment-reaction\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      - \"$ref\": \"#/components/parameters/reaction-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions\":\n    get:\n      summary: List reactions for a team discussion\n      description: |-\n        List the reactions to a [team discussion](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussions). OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\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/discussions/:discussion_number/reactions`.\n      tags:\n      - reactions\n      operationId: reactions/list-for-team-discussion-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#list-reactions-for-a-team-discussion\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - name: content\n        description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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        category: reactions\n        subcategory:\n    post:\n      summary: Create reaction for a team discussion\n      description: |-\n        Create a reaction to a [team discussion](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussions). OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/). A response with an HTTP `200` status means that you already added the reaction type to this team discussion.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `POST /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions`.\n      tags:\n      - reactions\n      operationId: reactions/create-for-team-discussion-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#create-reaction-for-a-team-discussion\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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      responses:\n        '200':\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        '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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: reactions\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}\":\n    delete:\n      summary: Delete team discussion reaction\n      description: |-\n        **Note:** You can also specify a team or organization with `team_id` and `org_id` using the route `DELETE /organizations/:org_id/team/:team_id/discussions/:discussion_number/reactions/:reaction_id`.\n\n        Delete a reaction to a [team discussion](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussions). OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - reactions\n      operationId: reactions/delete-for-team-discussion\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#delete-team-discussion-reaction\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/reaction-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/members\":\n    get:\n      summary: List team members\n      description: |-\n        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      tags:\n      - teams\n      operationId: teams/list-members-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-team-members\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\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        category: teams\n        subcategory: members\n  \"/orgs/{org}/teams/{team_slug}/memberships/{username}\":\n    get:\n      summary: Get team membership for a user\n      description: |-\n        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:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}/memberships/{username}`.\n\n        **Note:**\n        The response contains the `state` of the membership and the member's `role`.\n\n        The `role` for organization owners is set to `maintainer`. For more information about `maintainer` roles, see see [Create a team](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-team).\n      tags:\n      - teams\n      operationId: teams/get-membership-for-user-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-team-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\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-is-a-team-maintainer:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-user-is-a-team-maintainer\"\n        '404':\n          description: if user has no team membership\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: members\n    put:\n      summary: Add or update team membership for a user\n      description: |-\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        Adds an organization member to a team. An authenticated organization owner or team maintainer can add organization members to a 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\n        An organization owner can add someone who is not part of the team's organization to a team. When an organization owner adds someone to a team who is not an organization member, this endpoint will send an invitation to the person via email. This newly-created membership will be in the \"pending\" state until the person 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.\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\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `PUT /organizations/{org_id}/team/{team_id}/memberships/{username}`.\n      tags:\n      - teams\n      operationId: teams/add-or-update-membership-for-user-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/username\"\n      requestBody:\n        required: false\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      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-pending:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-users-membership-with-team-is-now-pending\"\n        '403':\n          description: Forbidden if team synchronization is set up\n        '422':\n          description: Unprocessable Entity if you attempt to add an organization\n            to a team\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: members\n    delete:\n      summary: Remove team membership for a user\n      description: |-\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 membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership 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\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/memberships/{username}`.\n      tags:\n      - teams\n      operationId: teams/remove-membership-for-user-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#remove-team-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n        '403':\n          description: Forbidden if team synchronization is set up\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory: members\n  \"/orgs/{org}/teams/{team_slug}/projects\":\n    get:\n      summary: List team projects\n      description: |-\n        Lists the organization projects for a team.\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}/projects`.\n      tags:\n      - teams\n      operationId: teams/list-projects-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-team-projects\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\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        category: teams\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/projects/{project_id}\":\n    get:\n      summary: Check team permissions for a project\n      description: |-\n        Checks whether a team has `read`, `write`, or `admin` permissions for an organization project. The response includes projects inherited from a parent team.\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}/projects/{project_id}`.\n      tags:\n      - teams\n      operationId: teams/check-permissions-for-project-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#check-team-permissions-for-a-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\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: Not Found if project is not managed by this team\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory:\n    put:\n      summary: Add or update team project permissions\n      description: |-\n        Adds an organization project to a team. To add a project to a team or update the team's permission on a project, the authenticated user must have `admin` permissions for the project. The project and team must be part of the same organization.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `PUT /organizations/{org_id}/team/{team_id}/projects/{project_id}`.\n      tags:\n      - teams\n      operationId: teams/add-or-update-project-permissions-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-project-permissions\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/project-id\"\n      requestBody:\n        required: false\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\\\"\"\n                  enum:\n                  - read\n                  - write\n                  - admin\n              nullable: true\n      responses:\n        '204':\n          description: Response\n        '403':\n          description: Forbidden 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://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-project-permissions\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory:\n    delete:\n      summary: Remove a project from a team\n      description: |-\n        Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have `read` access to both the team and project, or `admin` access to the team or project. This endpoint removes the project from the team, but does not delete the project.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/projects/{project_id}`.\n      tags:\n      - teams\n      operationId: teams/remove-project-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#remove-a-project-from-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/project-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/repos\":\n    get:\n      summary: List team repositories\n      description: |-\n        Lists a team's repositories visible to the authenticated user.\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}/repos`.\n      tags:\n      - teams\n      operationId: teams/list-repos-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-team-repositories\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\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        category: teams\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}\":\n    get:\n      summary: Check team permissions for a repository\n      description: |-\n        Checks whether a team has `admin`, `push`, `maintain`, `triage`, or `pull` permission for a repository. Repositories inherited through a parent team will also 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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/) via the `application/vnd.github.v3.repository+json` accept header.\n\n        If a team doesn't have permission for the repository, you will receive a `404 Not Found` response status.\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}/repos/{owner}/{repo}`.\n      tags:\n      - teams\n      operationId: teams/check-permissions-for-repo-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#check-team-permissions-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: Alternative response with repository permissions\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-repository\"\n              examples:\n                alternative-response-with-repository-permissions:\n                  \"$ref\": \"#/components/examples/team-repository-alternative-response-with-repository-permissions\"\n        '204':\n          description: Response if team has permission for the repository. This is\n            the response when the repository media type hasn't been provded in the\n            Accept header.\n        '404':\n          description: Not Found if team does not have permission for the repository\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory:\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. 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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\"\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `PUT /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}`.\n\n        For more information about 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      tags:\n      - teams\n      operationId: teams/add-or-update-repo-permissions-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#add-or-update-team-repository-permissions\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: false\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\\\\* `maintain` - team members can manage the repository without\n                    access to sensitive or destructive actions. Recommended for project\n                    managers. Only applies to repositories owned by organizations.\n                    \\ \\n\\\\* `triage` - team members can proactively manage issues\n                    and pull requests without write access. Recommended for contributors\n                    who triage a repository. Only applies to repositories owned by\n                    organizations.  \\n  \\nIf no permission is specified, the team's\n                    `permission` attribute will be used to determine what permission\n                    to grant the team on this repository.\"\n                  enum:\n                  - pull\n                  - push\n                  - admin\n                  - maintain\n                  - triage\n                  default: push\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory:\n    delete:\n      summary: Remove a repository from a team\n      description: |-\n        If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. This does not delete the repository, it just removes it from the team.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `DELETE /organizations/{org_id}/team/{team_id}/repos/{owner}/{repo}`.\n      tags:\n      - teams\n      operationId: teams/remove-repo-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#remove-a-repository-from-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: teams\n        subcategory:\n  \"/orgs/{org}/teams/{team_slug}/teams\":\n    get:\n      summary: List child teams\n      description: |-\n        Lists the child teams of the team specified by `{team_slug}`.\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}/teams`.\n      tags:\n      - teams\n      operationId: teams/list-child-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-child-teams\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team-slug\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: if child teams exist\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team\"\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        category: teams\n        subcategory:\n  \"/projects/columns/cards/{card_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#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        category: projects\n        subcategory: cards\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#update-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/card-id\"\n      requestBody:\n        required: false\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        category: projects\n        subcategory: cards\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#delete-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/card-id\"\n      responses:\n        '204':\n          description: 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        category: projects\n        subcategory: cards\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#move-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/card-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              properties:\n                position:\n                  description: 'The position of the card in a column. Can be one of:\n                    `top`, `bottom`, or `after:<card_id>` to place after the specified\n                    card.'\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: Response\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        category: projects\n        subcategory: cards\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#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        category: projects\n        subcategory: columns\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#update-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/column-id\"\n      requestBody:\n        required: true\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        category: projects\n        subcategory: columns\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#delete-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/column-id\"\n      responses:\n        '204':\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: true\n        category: projects\n        subcategory: columns\n  \"/projects/columns/{column_id}/cards\":\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#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        category: projects\n        subcategory: cards\n    post:\n      summary: Create a project card\n      description: ''\n      tags:\n      - projects\n      operationId: projects/create-card\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/projects#create-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/column-id\"\n      requestBody:\n        required: true\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: Response\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        category: projects\n        subcategory: cards\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#move-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/column-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              properties:\n                position:\n                  description: 'The position of the column in a project. Can be one\n                    of: `first`, `last`, or `after:<column_id>` to place after the\n                    specified column.'\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        category: projects\n        subcategory: columns\n  \"/projects/{project_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#update-a-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      requestBody:\n        required: false\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: Not Found 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        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#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        '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        category: projects\n        subcategory: collaborators\n  \"/projects/{project_id}/collaborators/{username}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#add-project-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      requestBody:\n        required: false\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              nullable: true\n      responses:\n        '204':\n          description: 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: true\n        category: projects\n        subcategory: collaborators\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#remove-project-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: 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        '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        category: projects\n        subcategory: collaborators\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#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/project-collaborator-permission\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-collaborator-permission\"\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: true\n        category: projects\n        subcategory: collaborators\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#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        category: projects\n        subcategory: columns\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#create-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      requestBody:\n        required: true\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        category: projects\n        subcategory: columns\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: rate-limit\n        subcategory:\n  \"/reactions/{reaction_id}\":\n    delete:\n      summary: Delete a reaction (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Reactions API. We recommend migrating your existing code to use the new delete reactions endpoints. For more information, see this [blog post](https://developer.github.com/changes/2020-02-26-new-delete-reactions-endpoints/).\n\n        OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/), when deleting a [team discussion](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussions) or [team discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussion-comments).\n      tags:\n      - reactions\n      operationId: reactions/delete-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions/#delete-a-reaction-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/reaction-id\"\n      responses:\n        '204':\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        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-21'\n        deprecationDate: '2020-02-26'\n        category: reactions\n        subcategory:\n      deprecated: true\n  \"/repos/{owner}/{repo}\":\n    get:\n      summary: Get a repository\n      description: The `parent` and `source` objects are present when the repository\n        is a fork. `parent` is the repository this repository was forked from, `source`\n        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://docs.github.com/enterprise-server@3.3/rest/reference/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        '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        category: repos\n        subcategory:\n    patch:\n      summary: Update a repository\n      description: \"**Note**: To edit a repository's topics, use the [Replace all\n        repository topics](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/repos/#update-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: false\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`.\"\n                  enum:\n                  - public\n                  - private\n                  - internal\n                security_and_analysis:\n                  type: object\n                  description: 'Specify which security and analysis features to enable\n                    or disable. For example, to enable GitHub Advanced Security, use\n                    this data in the body of the PATCH request: `{\"security_and_analysis\":\n                    {\"advanced_security\": {\"status\": \"enabled\"}}}`. If you have admin\n                    permissions for a private repository covered by an Advanced Security\n                    license, you can check which security and analysis features are\n                    currently enabled by using a `GET /repos/{owner}/{repo}` request.'\n                  nullable: true\n                  properties:\n                    advanced_security:\n                      type: object\n                      description: Use the `status` property to enable or disable\n                        GitHub Advanced Security for this repository. For more information,\n                        see \"[About GitHub Advanced Security](/github/getting-started-with-github/learning-about-github/about-github-advanced-security).\"\n                      properties:\n                        status:\n                          type: string\n                          description: Can be `enabled` or `disabled`.\n                    secret_scanning:\n                      type: object\n                      description: Use the `status` property to enable or disable\n                        secret scanning for this repository. For more information,\n                        see \"[About secret scanning](/code-security/secret-security/about-secret-scanning).\"\n                      properties:\n                        status:\n                          type: string\n                          description: Can be `enabled` or `disabled`.\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                allow_auto_merge:\n                  type: boolean\n                  description: Either `true` to allow auto-merge on pull requests,\n                    or `false` to disallow auto-merge.\n                  default: false\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                allow_forking:\n                  type: boolean\n                  description: Either `true` to allow private forks, or `false` to\n                    prevent private forks.\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        '307':\n          \"$ref\": \"#/components/responses/temporary_redirect\"\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        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#delete-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: 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://docs.github.com/enterprise-server@3.3/rest/reference/repos#delete-a-repository\n        '307':\n          \"$ref\": \"#/components/responses/temporary_redirect\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory:\n  \"/repos/{owner}/{repo}/actions/artifacts\":\n    get:\n      summary: List artifacts for a repository\n      description: Lists all artifacts for a repository. Anyone with read access to\n        the repository can use this endpoint. If the repository is private you must\n        use an access token with the `repo` scope. GitHub Apps must have the `actions:read`\n        permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-artifacts-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-artifacts-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: object\n                required:\n                - total_count\n                - artifacts\n                properties:\n                  total_count:\n                    type: integer\n                  artifacts:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/artifact\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/artifact-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: artifacts\n  \"/repos/{owner}/{repo}/actions/artifacts/{artifact_id}\":\n    get:\n      summary: Get an artifact\n      description: Gets a specific artifact for a workflow run. Anyone with read access\n        to the repository can use this endpoint. If the repository is private you\n        must use an access token with the `repo` scope. GitHub Apps must have the\n        `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-artifact\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-an-artifact\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/artifact-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/artifact\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/artifact\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: artifacts\n    delete:\n      summary: Delete an artifact\n      description: Deletes an artifact for a workflow run. You must authenticate using\n        an access token with the `repo` scope to use this endpoint. GitHub Apps must\n        have the `actions:write` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/delete-artifact\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-an-artifact\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/artifact-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: artifacts\n  \"/repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}\":\n    get:\n      summary: Download an artifact\n      description: |-\n        Gets a redirect URL to download an archive for a repository. This URL expires after 1 minute. Look for `Location:` in\n        the response header to find the URL for the download. The `:archive_format` must be `zip`. Anyone with read access to\n        the repository can use this endpoint. If the repository is private you must use an access token with the `repo` scope.\n        GitHub Apps must have the `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/download-artifact\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#download-an-artifact\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/artifact-id\"\n      - name: archive_format\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '302':\n          description: Response\n          headers:\n            Location:\n              \"$ref\": \"#/components/headers/location\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: artifacts\n  \"/repos/{owner}/{repo}/actions/jobs/{job_id}\":\n    get:\n      summary: Get a job for a workflow run\n      description: Gets a specific job in a workflow run. Anyone with read access\n        to the repository can use this endpoint. If the repository is private you\n        must use an access token with the `repo` scope. GitHub Apps must have the\n        `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-job-for-workflow-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-job-for-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/job-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/job\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/job\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-jobs\n  \"/repos/{owner}/{repo}/actions/jobs/{job_id}/logs\":\n    get:\n      summary: Download job logs for a workflow run\n      description: |-\n        Gets a redirect URL to download a plain text file of logs for a workflow job. This link expires after 1 minute. Look\n        for `Location:` in the response header to find the URL for the download. Anyone with read access to the repository can\n        use this endpoint. If the repository is private you must use an access token with the `repo` scope. GitHub Apps must\n        have the `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/download-job-logs-for-workflow-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#download-job-logs-for-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/job-id\"\n      responses:\n        '302':\n          description: Response\n          headers:\n            Location:\n              example: https://pipelines.actions.githubusercontent.com/ab1f3cCFPB34Nd6imvFxpGZH5hNlDp2wijMwl2gDoO0bcrrlJj/_apis/pipelines/1/jobs/19/signedlogcontent?urlExpires=2020-01-22T22%3A44%3A54.1389777Z&urlSigningMethod=HMACV1&urlSignature=2TUDfIg4fm36OJmfPy6km5QD5DLCOkBVzvhWZM8B%2BUY%3D\n              schema:\n                type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-jobs\n  \"/repos/{owner}/{repo}/actions/permissions\":\n    get:\n      summary: Get GitHub Actions permissions for a repository\n      description: |-\n        Gets the GitHub Actions permissions policy for a repository, including whether GitHub Actions is enabled and the actions allowed to run in the repository.\n\n        You must authenticate using an access token with the `repo` scope to use this\n        endpoint. GitHub Apps must have the `administration` repository permission to use this API.\n      operationId: actions/get-github-actions-permissions-repository\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-github-actions-permissions-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/actions-repository-permissions\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-repository-permissions\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n    put:\n      summary: Set GitHub Actions permissions for a repository\n      description: |-\n        Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.\n\n        If the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as `allowed_actions` to `selected` actions, then you cannot override them for the repository.\n\n        You must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.\n      operationId: actions/set-github-actions-permissions-repository\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-github-actions-permissions-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                enabled:\n                  \"$ref\": \"#/components/schemas/actions-enabled\"\n                allowed_actions:\n                  \"$ref\": \"#/components/schemas/allowed-actions\"\n              required:\n              - enabled\n            example:\n              enabled: true\n              allowed_actions: selected\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n  \"/repos/{owner}/{repo}/actions/permissions/selected-actions\":\n    get:\n      summary: Get allowed actions for a repository\n      description: |-\n        Gets the settings for selected actions that are allowed in a repository. To use this endpoint, the repository policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for a repository](#set-github-actions-permissions-for-a-repository).\"\n\n        You must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.\n      operationId: actions/get-allowed-actions-repository\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-allowed-actions-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/selected-actions\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/selected-actions\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n    put:\n      summary: Set allowed actions for a repository\n      description: |-\n        Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for a repository](#set-github-actions-permissions-for-a-repository).\"\n\n        If the repository belongs to an organization or enterprise that has `selected` actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.\n\n        To use the `patterns_allowed` setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the `patterns_allowed` setting only applies to public repositories.\n\n        You must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.\n      operationId: actions/set-allowed-actions-repository\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#set-allowed-actions-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              \"$ref\": \"#/components/schemas/selected-actions\"\n            examples:\n              selected_actions:\n                \"$ref\": \"#/components/examples/selected-actions\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: actions\n        subcategory: permissions\n  \"/repos/{owner}/{repo}/actions/runners\":\n    get:\n      summary: List self-hosted runners for a repository\n      description: Lists all self-hosted runners configured in a repository. You must\n        authenticate using an access token with the `repo` scope to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-self-hosted-runners-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-self-hosted-runners-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: object\n                required:\n                - total_count\n                - runners\n                properties:\n                  total_count:\n                    type: integer\n                  runners:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/runner\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/repos/{owner}/{repo}/actions/runners/downloads\":\n    get:\n      summary: List runner applications for a repository\n      description: |-\n        Lists binaries for the runner application that you can download and run.\n\n        You must authenticate using an access token with the `repo` scope to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-runner-applications-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-runner-applications-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                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/runner-application\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner-application-items-airgap\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/repos/{owner}/{repo}/actions/runners/registration-token\":\n    post:\n      summary: Create a registration token for a repository\n      description: \"Returns a token that you can pass to the `config` script. The\n        token expires after one hour. You must authenticate\\nusing an access token\n        with the `repo` scope to use this endpoint.\\n\\n#### Example using registration\n        token\\n \\nConfigure your self-hosted runner, replacing `TOKEN` with the registration\n        token provided by this endpoint.\\n\\n```\\n./config.sh --url https://github.com/octo-org/octo-repo-artifacts\n        --token TOKEN\\n```\"\n      tags:\n      - actions\n      operationId: actions/create-registration-token-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-a-registration-token-for-a-repository\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/authentication-token\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authentication-token\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/repos/{owner}/{repo}/actions/runners/remove-token\":\n    post:\n      summary: Create a remove token for a repository\n      description: \"Returns a token that you can pass to remove a self-hosted runner\n        from a repository. The token expires after one hour.\\nYou must authenticate\n        using an access token with the `repo` scope to use this endpoint.\\n\\n####\n        Example using remove token\\n \\nTo remove your self-hosted runner from a repository,\n        replace TOKEN with the remove token provided by this endpoint.\\n\\n```\\n./config.sh\n        remove --token TOKEN\\n```\"\n      tags:\n      - actions\n      operationId: actions/create-remove-token-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-a-remove-token-for-a-repository\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/authentication-token\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authentication-token-2\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/repos/{owner}/{repo}/actions/runners/{runner_id}\":\n    get:\n      summary: Get a self-hosted runner for a repository\n      description: |-\n        Gets a specific self-hosted runner configured in a repository.\n\n        You must authenticate using an access token with the `repo` scope to use this\n        endpoint.\n      tags:\n      - actions\n      operationId: actions/get-self-hosted-runner-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-self-hosted-runner-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/runner\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/runner\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n    delete:\n      summary: Delete a self-hosted runner from a repository\n      description: |-\n        Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.\n\n        You must authenticate using an access token with the `repo`\n        scope to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/delete-self-hosted-runner-from-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-a-self-hosted-runner-from-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/runner-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: self-hosted-runners\n  \"/repos/{owner}/{repo}/actions/runs\":\n    get:\n      summary: List workflow runs for a repository\n      description: |-\n        Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#parameters).\n\n        Anyone with read access to the repository can use this endpoint. If the repository is private you must use an access token with the `repo` scope. GitHub Apps must have the `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-workflow-runs-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-workflow-runs-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/actor\"\n      - \"$ref\": \"#/components/parameters/workflow-run-branch\"\n      - \"$ref\": \"#/components/parameters/event\"\n      - \"$ref\": \"#/components/parameters/workflow-run-status\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/created\"\n      - \"$ref\": \"#/components/parameters/exclude-pull-requests\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: object\n                required:\n                - total_count\n                - workflow_runs\n                properties:\n                  total_count:\n                    type: integer\n                  workflow_runs:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/workflow-run\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/workflow-run-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}\":\n    get:\n      summary: Get a workflow run\n      description: Gets a specific workflow run. Anyone with read access to the repository\n        can use this endpoint. If the repository is private you must use an access\n        token with the `repo` scope. GitHub Apps must have the `actions:read` permission\n        to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-workflow-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      - \"$ref\": \"#/components/parameters/exclude-pull-requests\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/workflow-run\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/workflow-run\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n    delete:\n      summary: Delete a workflow run\n      description: |-\n        Delete a specific workflow run. Anyone with write access to the repository can use this endpoint. If the repository is\n        private you must use an access token with the `repo` scope. GitHub Apps must have the `actions:write` permission to use\n        this endpoint.\n      operationId: actions/delete-workflow-run\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/approvals\":\n    get:\n      summary: Get the review history for a workflow run\n      description: Anyone with read access to the repository can use this endpoint.\n        If the repository is private, you must use an access token with the `repo`\n        scope. GitHub Apps must have the `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-reviews-for-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-the-review-history-for-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/environment-approvals\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/environment-approvals-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/artifacts\":\n    get:\n      summary: List workflow run artifacts\n      description: Lists artifacts for a workflow run. Anyone with read access to\n        the repository can use this endpoint. If the repository is private you must\n        use an access token with the `repo` scope. GitHub Apps must have the `actions:read`\n        permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-workflow-run-artifacts\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-workflow-run-artifacts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/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: object\n                required:\n                - total_count\n                - artifacts\n                properties:\n                  total_count:\n                    type: integer\n                  artifacts:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/artifact\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/artifact-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: artifacts\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}\":\n    get:\n      summary: Get a workflow run attempt\n      description: |-\n        Gets a specific workflow run attempt. Anyone with read access to the repository\n        can use this endpoint. If the repository is private you must use an access token\n        with the `repo` scope. GitHub Apps must have the `actions:read` permission to\n        use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-workflow-run-attempt\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-workflow-run-attempt\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      - \"$ref\": \"#/components/parameters/attempt-number\"\n      - \"$ref\": \"#/components/parameters/exclude-pull-requests\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/workflow-run\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/workflow-run\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs\":\n    get:\n      summary: List jobs for a workflow run attempt\n      description: Lists jobs for a specific workflow run attempt. Anyone with read\n        access to the repository can use this endpoint. If the repository is private\n        you must use an access token with the `repo` scope. GitHub Apps must have\n        the `actions:read` permission to use this endpoint. You can use parameters\n        to narrow the list of results. For more information about using parameters,\n        see [Parameters](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#parameters).\n      tags:\n      - actions\n      operationId: actions/list-jobs-for-workflow-run-attempt\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-jobs-for-a-workflow-run-attempt\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      - \"$ref\": \"#/components/parameters/attempt-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: object\n                required:\n                - total_count\n                - jobs\n                properties:\n                  total_count:\n                    type: integer\n                  jobs:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/job\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/job-paginated\"\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        category: actions\n        subcategory: workflow-jobs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/cancel\":\n    post:\n      summary: Cancel a workflow run\n      description: Cancels a workflow run using its `id`. You must authenticate using\n        an access token with the `repo` scope to use this endpoint. GitHub Apps must\n        have the `actions:write` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/cancel-workflow-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#cancel-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      responses:\n        '202':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/jobs\":\n    get:\n      summary: List jobs for a workflow run\n      description: Lists jobs for a workflow run. Anyone with read access to the repository\n        can use this endpoint. If the repository is private you must use an access\n        token with the `repo` scope. GitHub Apps must have the `actions:read` permission\n        to use this endpoint. You can use parameters to narrow the list of results.\n        For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#parameters).\n      tags:\n      - actions\n      operationId: actions/list-jobs-for-workflow-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-jobs-for-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      - name: filter\n        description: \"Filters jobs by their `completed_at` timestamp. Can be one of:\n          \\ \\n\\\\* `latest`: Returns jobs from the most recent execution of the workflow\n          run.  \\n\\\\* `all`: Returns all jobs for a workflow run, including from old\n          executions of the workflow run.\"\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                required:\n                - total_count\n                - jobs\n                properties:\n                  total_count:\n                    type: integer\n                  jobs:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/job\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/job-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-jobs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/logs\":\n    get:\n      summary: Download workflow run logs\n      description: |-\n        Gets a redirect URL to download an archive of log files for a workflow run. This link expires after 1 minute. Look for\n        `Location:` in the response header to find the URL for the download. Anyone with read access to the repository can use\n        this endpoint. If the repository is private you must use an access token with the `repo` scope. GitHub Apps must have\n        the `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/download-workflow-run-logs\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#download-workflow-run-logs\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      responses:\n        '302':\n          description: Response\n          headers:\n            Location:\n              example: https://pipelines.actions.githubusercontent.com/ab1f3cCFPB34Nd6imvFxpGZH5hNlDp2wijMwl2gDoO0bcrrlJj/_apis/pipelines/1/runs/19/signedlogcontent?urlExpires=2020-01-22T22%3A44%3A54.1389777Z&urlSigningMethod=HMACV1&urlSignature=2TUDfIg4fm36OJmfPy6km5QD5DLCOkBVzvhWZM8B%2BUY%3D\n              schema:\n                type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n    delete:\n      summary: Delete workflow run logs\n      description: Deletes all logs for a workflow run. You must authenticate using\n        an access token with the `repo` scope to use this endpoint. GitHub Apps must\n        have the `actions:write` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/delete-workflow-run-logs\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-workflow-run-logs\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments\":\n    get:\n      summary: Get pending deployments for a workflow run\n      description: |-\n        Get all deployment environments for a workflow run that are waiting for protection rules to pass.\n\n        Anyone with read access to the repository can use this endpoint. If the repository is private, you must use an access token with the `repo` scope. GitHub Apps must have the `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-pending-deployments-for-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-pending-deployments-for-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/pending-deployment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pending-deployment-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n    post:\n      summary: Review pending deployments for a workflow run\n      description: |-\n        Approve or reject pending deployments that are waiting on approval by a required reviewer.\n\n        Anyone with read access to the repository contents and deployments can use this endpoint.\n      tags:\n      - actions\n      operationId: actions/review-pending-deployments-for-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#review-pending-deployments-for-a-workflow-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                environment_ids:\n                  type: array\n                  description: The list of environment ids to approve or reject\n                  example:\n                  - 161171787\n                  - 161171795\n                  items:\n                    type: integer\n                    example: 161171787\n                state:\n                  type: string\n                  description: 'Whether to approve or reject deployment to the specified\n                    environments. Must be one of: `approved` or `rejected`'\n                  enum:\n                  - approved\n                  - rejected\n                  example: approved\n                comment:\n                  type: string\n                  description: A comment to accompany the deployment review\n                  example: Ship it!\n              required:\n              - environment_ids\n              - state\n              - comment\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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\n  \"/repos/{owner}/{repo}/actions/runs/{run_id}/rerun\":\n    post:\n      summary: Re-run a workflow\n      description: Re-runs your workflow run using its `id`. You must authenticate\n        using an access token with the `repo` scope to use this endpoint. GitHub Apps\n        must have the `actions:write` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/re-run-workflow\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#re-run-a-workflow\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/run-id\"\n      responses:\n        '201':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        deprecationDate: '2021-09-14'\n        category: actions\n        subcategory: workflow-runs\n      deprecated: true\n  \"/repos/{owner}/{repo}/actions/secrets\":\n    get:\n      summary: List repository secrets\n      description: Lists all secrets available in a repository without revealing their\n        encrypted values. You must authenticate using an access token with the `repo`\n        scope to use this endpoint. GitHub Apps must have the `secrets` repository\n        permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-repo-secrets\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-repository-secrets\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: object\n                required:\n                - total_count\n                - secrets\n                properties:\n                  total_count:\n                    type: integer\n                  secrets:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/actions-secret\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-secret-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/repos/{owner}/{repo}/actions/secrets/public-key\":\n    get:\n      summary: Get a repository public key\n      description: Gets your public key, which you need to encrypt secrets. You need\n        to encrypt a secret before you can create or update secrets. Anyone with read\n        access to the repository can use this endpoint. If the repository is private\n        you must use an access token with the `repo` scope. GitHub Apps must have\n        the `secrets` repository permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-repo-public-key\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-repository-public-key\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/actions-public-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-public-key\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/repos/{owner}/{repo}/actions/secrets/{secret_name}\":\n    get:\n      summary: Get a repository secret\n      description: Gets a single repository secret without revealing its encrypted\n        value. You must authenticate using an access token with the `repo` scope to\n        use this endpoint. GitHub Apps must have the `secrets` repository permission\n        to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-repo-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-repository-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/actions-secret\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-secret\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n    put:\n      summary: Create or update a repository secret\n      description: |-\n        Creates or updates a repository secret with an encrypted value. Encrypt your secret using\n        [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\n        token with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\n        this endpoint.\n\n        #### Example encrypting a secret using Node.js\n\n        Encrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n        ```\n        const sodium = require('tweetsodium');\n\n        const key = \"base64-encoded-public-key\";\n        const value = \"plain-text-secret\";\n\n        // Convert the message and key to Uint8Array's (Buffer implements that interface)\n        const messageBytes = Buffer.from(value);\n        const keyBytes = Buffer.from(key, 'base64');\n\n        // Encrypt using LibSodium.\n        const encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n        // Base64 the encrypted secret\n        const encrypted = Buffer.from(encryptedBytes).toString('base64');\n\n        console.log(encrypted);\n        ```\n\n\n        #### Example encrypting a secret using Python\n\n        Encrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n        ```\n        from base64 import b64encode\n        from nacl import encoding, public\n\n        def encrypt(public_key: str, secret_value: str) -> str:\n          \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n          public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n          sealed_box = public.SealedBox(public_key)\n          encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n          return b64encode(encrypted).decode(\"utf-8\")\n        ```\n\n        #### Example encrypting a secret using C#\n\n        Encrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n        ```\n        var secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\n        var publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\n        var sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\n        Console.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n        ```\n\n        #### Example encrypting a secret using Ruby\n\n        Encrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n        ```ruby\n        require \"rbnacl\"\n        require \"base64\"\n\n        key = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\n        public_key = RbNaCl::PublicKey.new(key)\n\n        box = RbNaCl::Boxes::Sealed.from_public_key(public_key)\n        encrypted_secret = box.encrypt(\"my_secret\")\n\n        # Print the base64 encoded secret\n        puts Base64.strict_encode64(encrypted_secret)\n        ```\n      tags:\n      - actions\n      operationId: actions/create-or-update-repo-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-or-update-a-repository-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                encrypted_value:\n                  type: string\n                  description: Value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages)\n                    using the public key retrieved from the [Get a repository public\n                    key](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-repository-public-key)\n                    endpoint.\n                  pattern: \"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$\"\n                key_id:\n                  type: string\n                  description: ID of the key you used to encrypt the secret.\n            example:\n              encrypted_value: c2VjcmV0\n              key_id: '012345678912345678'\n      responses:\n        '201':\n          description: Response when creating a secret\n          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n        '204':\n          description: Response when updating a secret\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n    delete:\n      summary: Delete a repository secret\n      description: Deletes a secret in a repository using the secret name. You must\n        authenticate using an access token with the `repo` scope to use this endpoint.\n        GitHub Apps must have the `secrets` repository permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/delete-repo-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-a-repository-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/repos/{owner}/{repo}/actions/workflows\":\n    get:\n      summary: List repository workflows\n      description: Lists the workflows in a repository. Anyone with read access to\n        the repository can use this endpoint. If the repository is private you must\n        use an access token with the `repo` scope. GitHub Apps must have the `actions:read`\n        permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-repo-workflows\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-repository-workflows\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: object\n                required:\n                - total_count\n                - workflows\n                properties:\n                  total_count:\n                    type: integer\n                  workflows:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/workflow\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/workflow-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflows\n  \"/repos/{owner}/{repo}/actions/workflows/{workflow_id}\":\n    get:\n      summary: Get a workflow\n      description: Gets a specific workflow. You can replace `workflow_id` with the\n        workflow file name. For example, you could use `main.yaml`. Anyone with read\n        access to the repository can use this endpoint. If the repository is private\n        you must use an access token with the `repo` scope. GitHub Apps must have\n        the `actions:read` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-workflow\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-a-workflow\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/workflow-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/workflow\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/workflow\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflows\n  \"/repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable\":\n    put:\n      summary: Disable a workflow\n      description: |-\n        Disables a workflow and sets the `state` of the workflow to `disabled_manually`. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`.\n\n        You must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `actions:write` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/disable-workflow\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#disable-a-workflow\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/workflow-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflows\n  \"/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches\":\n    post:\n      summary: Create a workflow dispatch event\n      description: |-\n        You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`.\n\n        You must configure your GitHub Actions workflow to run when the [`workflow_dispatch` webhook](/developers/webhooks-and-events/webhook-events-and-payloads#workflow_dispatch) event occurs. The `inputs` are configured in the workflow file. For more information about how to configure the `workflow_dispatch` event in the workflow file, see \"[Events that trigger workflows](/actions/reference/events-that-trigger-workflows#workflow_dispatch).\"\n\n        You must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `actions:write` permission to use this endpoint. For more information, see \"[Creating a personal access token for the command line](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line).\"\n      operationId: actions/create-workflow-dispatch\n      tags:\n      - actions\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-a-workflow-dispatch-event\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/workflow-id\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                ref:\n                  type: string\n                  description: The git reference for the workflow. The reference can\n                    be a branch or tag name.\n                inputs:\n                  type: object\n                  description: Input keys and values configured in the workflow file.\n                    The maximum number of properties is 10. Any default properties\n                    configured in the workflow file will be used when `inputs` are\n                    omitted.\n                  additionalProperties:\n                    type: string\n                  maxProperties: 10\n              required:\n              - ref\n            example:\n              ref: topic-branch\n              inputs:\n                name: Mona the Octocat\n                home: San Francisco, CA\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflows\n  \"/repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable\":\n    put:\n      summary: Enable a workflow\n      description: |-\n        Enables a workflow and sets the `state` of the workflow to `active`. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`.\n\n        You must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `actions:write` permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/enable-workflow\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#enable-a-workflow\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/workflow-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflows\n  \"/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs\":\n    get:\n      summary: List workflow runs\n      description: |-\n        List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#parameters).\n\n        Anyone with read access to the repository can use this endpoint. If the repository is private you must use an access token with the `repo` scope.\n      tags:\n      - actions\n      operationId: actions/list-workflow-runs\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-workflow-runs\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/workflow-id\"\n      - \"$ref\": \"#/components/parameters/actor\"\n      - \"$ref\": \"#/components/parameters/workflow-run-branch\"\n      - \"$ref\": \"#/components/parameters/event\"\n      - \"$ref\": \"#/components/parameters/workflow-run-status\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/created\"\n      - \"$ref\": \"#/components/parameters/exclude-pull-requests\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: object\n                required:\n                - total_count\n                - workflow_runs\n                properties:\n                  total_count:\n                    type: integer\n                  workflow_runs:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/workflow-run\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/workflow-run-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: workflow-runs\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: assignees\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#check-if-a-user-can-be-assigned\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: assignee\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        category: issues\n        subcategory: assignees\n  \"/repos/{owner}/{repo}/autolinks\":\n    get:\n      summary: List all autolinks of a repository\n      description: |-\n        This returns a list of autolinks configured for the given repository.\n\n        Information about autolinks are only available to repository administrators.\n      tags:\n      - repos\n      operationId: repos/list-autolinks\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/v3/repos#list-autolinks\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\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/autolink\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/autolink-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: autolinks\n    post:\n      summary: Create an autolink reference for a repository\n      description: Users with admin access to the repository can create an autolink.\n      tags:\n      - repos\n      operationId: repos/create-autolink\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/v3/repos#create-an-autolink\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                key_prefix:\n                  type: string\n                  description: The prefix appended by a number will generate a link\n                    any time it is found in an issue, pull request, or commit.\n                url_template:\n                  type: string\n                  description: The URL must contain <num> for the reference number.\n              required:\n              - key_prefix\n              - url_template\n            example:\n              key_prefix: TICKET-\n              url_template: https://example.com/TICKET?query=<num>\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/autolink\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/autolink\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/autolinks/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: autolinks\n  \"/repos/{owner}/{repo}/autolinks/{autolink_id}\":\n    get:\n      summary: Get an autolink reference of a repository\n      description: |-\n        This returns a single autolink reference by ID that was configured for the given repository.\n\n        Information about autolinks are only available to repository administrators.\n      tags:\n      - repos\n      operationId: repos/get-autolink\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/v3/repos#get-autolink\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/autolink-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/autolink\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/autolink\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: autolinks\n    delete:\n      summary: Delete an autolink reference from a repository\n      description: |-\n        This deletes a single autolink reference by ID that was configured for the given repository.\n\n        Information about autolinks are only available to repository administrators.\n      tags:\n      - repos\n      operationId: repos/delete-autolink\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/v3/repos#delete-autolink\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/autolink-id\"\n      responses:\n        '204':\n          description: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: autolinks\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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-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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        '301':\n          \"$ref\": \"#/components/responses/moved_permanently\"\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        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#update-branch-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: true\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                      deprecated: true\n                      description: \"**Deprecated**: The list of status checks to require\n                        in order to merge into this branch. If any of these checks\n                        have recently been set by a particular GitHub App, they will\n                        be required to come from that app in future for the branch\n                        to merge. Use `checks` instead of `contexts` for more fine-grained\n                        control.\\n\"\n                      items:\n                        type: string\n                    checks:\n                      type: array\n                      description: The list of status checks to require in order to\n                        merge into this branch.\n                      items:\n                        type: object\n                        required:\n                        - context\n                        properties:\n                          context:\n                            type: string\n                            description: The name of the required check\n                          app_id:\n                            type: integer\n                            description: The ID of the GitHub App that must provide\n                              this check. Omit this field to automatically select\n                              the GitHub App that has recently provided this check,\n                              or any app if it was not set by a GitHub App. Pass -1\n                              to explicitly allow any app to set the status.\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_conversation_resolution:\n                  type: boolean\n                  description: 'Requires all conversations on code to be resolved\n                    before a pull request can be merged into a branch that matches\n                    this rule. Set to `false` to disable. Default: `false`.'\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              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                bypass_pull_request_allowances:\n                  users:\n                  - octocat\n                  teams:\n                  - justice-league\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              required_conversation_resolution: 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        '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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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/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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        required: false\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              bypass_pull_request_allowances:\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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/required_signatures\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#update-status-check-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\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                  deprecated: true\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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#add-status-check-contexts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  contexts:\n                    type: array\n                    description: contexts parameter\n                    items:\n                      type: string\n                required:\n                - contexts\n                example:\n                  contexts:\n                  - contexts\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        requestBodyParameterName: contexts\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#set-status-check-contexts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  contexts:\n                    type: array\n                    description: contexts parameter\n                    items:\n                      type: string\n                required:\n                - contexts\n                example:\n                  contexts:\n                  - contexts\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        requestBodyParameterName: contexts\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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              oneOf:\n              - type: object\n                properties:\n                  contexts:\n                    type: array\n                    description: contexts parameter\n                    items:\n                      type: string\n                required:\n                - contexts\n                example:\n                  contexts:\n                  - contexts\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        requestBodyParameterName: contexts\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#add-app-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  apps:\n                    type: array\n                    description: apps parameter\n                    items:\n                      type: string\n                required:\n                - apps\n                example:\n                  apps:\n                  - my-app\n              - type: array\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        requestBodyParameterName: apps\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#set-app-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  apps:\n                    type: array\n                    description: apps parameter\n                    items:\n                      type: string\n                required:\n                - apps\n                example:\n                  apps:\n                  - my-app\n              - type: array\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        requestBodyParameterName: apps\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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              oneOf:\n              - type: object\n                properties:\n                  apps:\n                    type: array\n                    description: apps parameter\n                    items:\n                      type: string\n                required:\n                - apps\n                example:\n                  apps:\n                  - my-app\n              - type: array\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        requestBodyParameterName: apps\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#add-team-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  teams:\n                    type: array\n                    description: teams parameter\n                    items:\n                      type: string\n                required:\n                - teams\n                example:\n                  teams:\n                  - my-team\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        requestBodyParameterName: teams\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#set-team-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  teams:\n                    type: array\n                    description: teams parameter\n                    items:\n                      type: string\n                required:\n                - teams\n                example:\n                  teams:\n                  - my-team\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        requestBodyParameterName: teams\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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              oneOf:\n              - type: object\n                properties:\n                  teams:\n                    type: array\n                    description: teams parameter\n                    items:\n                      type: string\n                required:\n                - teams\n                example:\n                  teams:\n                  - my-team\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        requestBodyParameterName: teams\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#add-user-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  users:\n                    type: array\n                    description: users parameter\n                    items:\n                      type: string\n                required:\n                - users\n                example:\n                  users:\n                  - mona\n              - type: array\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        requestBodyParameterName: users\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#set-user-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  users:\n                    type: array\n                    description: users parameter\n                    items:\n                      type: string\n                required:\n                - users\n                example:\n                  users:\n                  - mona\n              - type: array\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        requestBodyParameterName: users\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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              oneOf:\n              - type: object\n                properties:\n                  users:\n                    type: array\n                    description: users parameter\n                    items:\n                      type: string\n                required:\n                - users\n                example:\n                  users:\n                  - mona\n              - type: array\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        requestBodyParameterName: users\n        category: repos\n        subcategory: branches\n  \"/repos/{owner}/{repo}/branches/{branch}/rename\":\n    post:\n      summary: Rename a branch\n      description: |-\n        Renames a branch in a repository.\n\n        **Note:** Although the API responds immediately, the branch rename process might take some extra time to complete in the background. You won't be able to push to the old branch name while the rename process is in progress. For more information, see \"[Renaming a branch](https://docs.github.com/enterprise-server@3.3/github/administering-a-repository/renaming-a-branch)\".\n\n        The permissions required to use this endpoint depends on whether you are renaming the default branch.\n\n        To rename a non-default branch:\n\n        * Users must have push access.\n        * GitHub Apps must have the `contents:write` repository permission.\n\n        To rename the default branch:\n\n        * Users must have admin or owner permissions.\n        * GitHub Apps must have the `administration:write` repository permission.\n      tags:\n      - repos\n      operationId: repos/rename-branch\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#rename-a-branch\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        required: true\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 branch.\n              required:\n              - new_name\n            example:\n              new_name: my_renamed_branch\n      responses:\n        '201':\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        '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: true\n        category: repos\n        subcategory: branches\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\n        In a check suite, GitHub limits the number of check runs with the same name to 1000. Once these check runs exceed 1000, GitHub will start to automatically delete older check runs.\n      tags:\n      - checks\n      operationId: checks/create\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/checks#create-a-check-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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                  format: date-time\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 `action_required`, `cancelled`, `failure`, `neutral`, `success`,\n                    `skipped`, `stale`, or `timed_out`. 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`. You cannot change a\n                    check run conclusion to `stale`, only GitHub can set this.\"\n                  enum:\n                  - action_required\n                  - cancelled\n                  - failure\n                  - neutral\n                  - success\n                  - skipped\n                  - stale\n                  - timed_out\n                completed_at:\n                  type: string\n                  format: date-time\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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                      maxLength: 65535\n                      description: The summary of the check run. This parameter supports\n                        Markdown.\n                    text:\n                      type: string\n                      maxLength: 65535\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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://docs.github.com/enterprise-server@3.3/rest/reference/checks#annotations-object)\n                        description for details about how to use this parameter.\n                      maxItems: 50\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/checks#actions-object)\n                    description. To learn more about check runs and requested actions,\n                    see \"[Check runs and requested actions](https://docs.github.com/enterprise-server@3.3/rest/reference/checks#check-runs-and-requested-actions).\"\n                  maxItems: 3\n                  items:\n                    type: object\n                    properties:\n                      label:\n                        type: string\n                        maxLength: 20\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                        maxLength: 40\n                        description: A short explanation of what this action would\n                          do. The maximum size is 40 characters.\n                      identifier:\n                        type: string\n                        maxLength: 20\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              oneOf:\n              - properties:\n                  status:\n                    enum:\n                    - completed\n                required:\n                - status\n                - conclusion\n                additionalProperties: true\n              - properties:\n                  status:\n                    enum:\n                    - queued\n                    - in_progress\n                additionalProperties: true\n            examples:\n              example-of-in-progress-conclusion:\n                summary: Response for 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: Response for 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-completed-conclusion:\n                  \"$ref\": \"#/components/examples/check-run-example-of-completed-conclusion\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: checks\n        subcategory: runs\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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        category: checks\n        subcategory: runs\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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        required: true\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                  format: date-time\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 `action_required`, `cancelled`, `failure`, `neutral`, `success`,\n                    `skipped`, `stale`, or `timed_out`.  \\n**Note:** Providing `conclusion`\n                    will automatically set the `status` parameter to `completed`.\n                    You cannot change a check run conclusion to `stale`, only GitHub\n                    can set this.\"\n                  enum:\n                  - action_required\n                  - cancelled\n                  - failure\n                  - neutral\n                  - success\n                  - skipped\n                  - stale\n                  - timed_out\n                completed_at:\n                  type: string\n                  format: date-time\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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                      maxLength: 65535\n                    text:\n                      type: string\n                      description: Can contain Markdown.\n                      maxLength: 65535\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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://docs.github.com/enterprise-server@3.3/rest/reference/checks#annotations-object-1)\n                        description for details.\n                      maxItems: 50\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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://docs.github.com/enterprise-server@3.3/rest/reference/checks#actions-object)\n                    description. To learn more about check runs and requested actions,\n                    see \"[Check runs and requested actions](https://docs.github.com/enterprise-server@3.3/rest/reference/checks#check-runs-and-requested-actions).\"\n                  maxItems: 3\n                  items:\n                    type: object\n                    properties:\n                      label:\n                        type: string\n                        maxLength: 20\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                        maxLength: 40\n                        description: A short explanation of what this action would\n                          do. The maximum size is 40 characters.\n                      identifier:\n                        type: string\n                        maxLength: 20\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              anyOf:\n              - properties:\n                  status:\n                    enum:\n                    - completed\n                required:\n                - conclusion\n                additionalProperties: true\n              - properties:\n                  status:\n                    enum:\n                    - queued\n                    - in_progress\n                additionalProperties: true\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        category: checks\n        subcategory: runs\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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        category: checks\n        subcategory: runs\n  \"/repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest\":\n    post:\n      summary: Rerequest a check run\n      description: |-\n        Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the [`check_run` webhook](https://docs.github.com/enterprise-server@3.3/webhooks/event-payloads/#check_run) event with the action `rerequested`. When a check run is `rerequested`, its `status` is reset to `queued` and the `conclusion` is cleared.\n\n        To rerequest a check run, 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-run\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/checks#rerequest-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        '201':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n        '403':\n          description: Forbidden if the check run is not rerequestable or doesn't\n            belong to the authenticated GitHub App\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/basic-error\"\n        '422':\n          description: Validation error if the check run is not rerequestable\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/basic-error\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: checks\n        subcategory: runs\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://docs.github.com/enterprise-server@3.3/rest/overview/media-types) 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://docs.github.com/enterprise-server@3.3/rest/reference/checks#check-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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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://docs.github.com/enterprise-server@3.3/rest/reference/checks#create-a-check-suite\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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        '200':\n          description: when the suite already existed\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/check-suite\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-suite\"\n        '201':\n          description: Response when the suite was created\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        category: checks\n        subcategory: suites\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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://docs.github.com/enterprise-server@3.3/rest/reference/checks#update-repository-preferences-for-check-suites\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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        category: checks\n        subcategory: suites\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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        category: checks\n        subcategory: suites\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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                required:\n                - total_count\n                - check_runs\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        category: checks\n        subcategory: runs\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: checks\n        subcategory: suites\n  \"/repos/{owner}/{repo}/code-scanning/alerts\":\n    get:\n      summary: List code scanning alerts for a repository\n      description: |-\n        Lists all open code scanning alerts for the default branch (usually `main`\n        or `master`). You must use an access token with the `security_events` scope to use\n        this endpoint. GitHub Apps must have the `security_events` read permission to use\n        this endpoint.\n\n        The response includes a `most_recent_instance` object.\n        This provides details of the most recent instance of this alert\n        for the default branch or for the specified Git reference\n        (if you used `ref` in the request).\n      tags:\n      - code-scanning\n      operationId: code-scanning/list-alerts-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#list-code-scanning-alerts-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/tool-name\"\n      - \"$ref\": \"#/components/parameters/tool-guid\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/git-ref\"\n      - name: state\n        description: Set to `open`, `fixed`, or `dismissed` to list code scanning\n          alerts in a specific state.\n        in: query\n        required: false\n        schema:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-state\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/code-scanning-alert-items\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-scanning-alert-items\"\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_read\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: code-scanning\n        subcategory:\n  \"/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}\":\n    get:\n      summary: Get a code scanning alert\n      description: |-\n        Gets a single code scanning alert. You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` read permission to use this endpoint.\n\n        **Deprecation notice**:\n        The instances field is deprecated and will, in future, not be included in the response for this endpoint. The example response reflects this change. The same information can now be retrieved via a GET request to the URL specified by `instances_url`.\n      tags:\n      - code-scanning\n      operationId: code-scanning/get-alert\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#get-a-code-scanning-alert\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/alert-number\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/code-scanning-alert\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-scanning-alert\"\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_read\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: code-scanning\n        subcategory:\n    patch:\n      summary: Update a code scanning alert\n      description: Updates the status of a single code scanning alert. You must use\n        an access token with the `security_events` scope to use this endpoint. GitHub\n        Apps must have the `security_events` write permission to use this endpoint.\n      operationId: code-scanning/update-alert\n      tags:\n      - code-scanning\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#update-a-code-scanning-alert\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/alert-number\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                state:\n                  \"$ref\": \"#/components/schemas/code-scanning-alert-set-state\"\n                dismissed_reason:\n                  \"$ref\": \"#/components/schemas/code-scanning-alert-dismissed-reason\"\n              required:\n              - state\n            example:\n              state: dismissed\n              dismissed_reason: false positive\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/code-scanning-alert\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-scanning-alert-dismissed\"\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_write\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: code-scanning\n  \"/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances\":\n    get:\n      summary: List instances of a code scanning alert\n      description: Lists all instances of the specified code scanning alert. You must\n        use an access token with the `security_events` scope to use this endpoint.\n        GitHub Apps must have the `security_events` read permission to use this endpoint.\n      tags:\n      - code-scanning\n      operationId: code-scanning/list-alert-instances\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#list-instances-of-a-code-scanning-alert\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/alert-number\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/git-ref\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/code-scanning-alert-instance\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-scanning-alert-instances\"\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_read\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: code-scanning\n        subcategory:\n  \"/repos/{owner}/{repo}/code-scanning/analyses\":\n    get:\n      summary: List code scanning analyses for a repository\n      description: |-\n        Lists the details of all code scanning analyses for a repository,\n        starting with the most recent.\n        The response is paginated and you can use the `page` and `per_page` parameters\n        to list the analyses you're interested in.\n        By default 30 analyses are listed per page.\n\n        The `rules_count` field in the response give the number of rules\n        that were run in the analysis.\n        For very old analyses this data is not available,\n        and `0` is returned in this field.\n\n        You must use an access token with the `security_events` scope to use this endpoint.\n        GitHub Apps must have the `security_events` read permission to use this endpoint.\n\n        **Deprecation notice**:\n        The `tool_name` field is deprecated and will, in future, not be included in the response for this endpoint. The example response reflects this change. The tool name can now be found inside the `tool` field.\n      operationId: code-scanning/list-recent-analyses\n      tags:\n      - code-scanning\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#list-code-scanning-analyses-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/tool-name\"\n      - \"$ref\": \"#/components/parameters/tool-guid\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - name: ref\n        in: query\n        description: The Git reference for the analyses you want to list. The `ref`\n          for a branch can be formatted either as `refs/heads/<branch name>` or simply\n          `<branch name>`. To reference a pull request use `refs/pull/<number>/merge`.\n        required: false\n        schema:\n          \"$ref\": \"#/components/schemas/code-scanning-ref\"\n      - name: sarif_id\n        in: query\n        description: Filter analyses belonging to the same SARIF upload.\n        required: false\n        schema:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-sarif-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/code-scanning-analysis\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-scanning-analysis-items\"\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_read\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: code-scanning\n  \"/repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}\":\n    get:\n      summary: Get a code scanning analysis for a repository\n      description: |-\n        Gets a specified code scanning analysis for a repository.\n        You must use an access token with the `security_events` scope to use this endpoint.\n        GitHub Apps must have the `security_events` read permission to use this endpoint.\n\n        The default JSON response contains fields that describe the analysis.\n        This includes the Git reference and commit SHA to which the analysis relates,\n        the datetime of the analysis, the name of the code scanning tool,\n        and the number of alerts.\n\n        The `rules_count` field in the default response give the number of rules\n        that were run in the analysis.\n        For very old analyses this data is not available,\n        and `0` is returned in this field.\n\n        If you use the Accept header `application/sarif+json`,\n        the response contains the analysis data that was uploaded.\n        This is formatted as\n        [SARIF version 2.1.0](https://docs.oasis-open.org/sarif/sarif/v2.1.0/cs01/sarif-v2.1.0-cs01.html).\n      operationId: code-scanning/get-analysis\n      tags:\n      - code-scanning\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#get-a-code-scanning-analysis-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: analysis_id\n        in: path\n        description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses`\n          operation.\n        required: true\n        schema:\n          type: integer\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json+sarif:\n              schema:\n                type: string\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/code-scanning-analysis\"\n              examples:\n                response:\n                  \"$ref\": \"#/components/examples/code-scanning-analysis-default\"\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_read\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: code-scanning\n    delete:\n      summary: Delete a code scanning analysis from a repository\n      description: |-\n        Deletes a specified code scanning analysis from a repository. For\n        private repositories, you must use an access token with the `repo` scope. For public repositories,\n        you must use an access token with `public_repo` and `repo:security_events` scopes.\n        GitHub Apps must have the `security_events` write permission to use this endpoint.\n\n        You can delete one analysis at a time.\n        To delete a series of analyses, start with the most recent analysis and work backwards.\n        Conceptually, the process is similar to the undo function in a text editor.\n\n        **Note**: The ability to delete analyses was introduced in GitHub Enterprise Server 3.1.\n        You can delete analyses that were generated prior to installing this release,\n        however, if you do so, you will lose information about fixed alerts for all such analyses,\n        for the relevant code scanning tool.\n        We recommend that you only delete analyses that were generated with earlier releases\n        if you don't need the details of fixed alerts from pre-3.1 releases.\n\n        When you list the analyses for a repository,\n        one or more will be identified as deletable in the response:\n\n        ```\n        \"deletable\": true\n        ```\n\n        An analysis is deletable when it's the most recent in a set of analyses.\n        Typically, a repository will have multiple sets of analyses\n        for each enabled code scanning tool,\n        where a set is determined by a unique combination of analysis values:\n\n        * `ref`\n        * `tool`\n        * `analysis_key`\n        * `environment`\n\n        If you attempt to delete an analysis that is not the most recent in a set,\n        you'll get a 400 response with the message:\n\n        ```\n        Analysis specified is not deletable.\n        ```\n\n        The response from a successful `DELETE` operation provides you with\n        two alternative URLs for deleting the next analysis in the set\n        (see the example default response below).\n        Use the `next_analysis_url` URL if you want to avoid accidentally deleting the final analysis\n        in the set. This is a useful option if you want to preserve at least one analysis\n        for the specified tool in your repository.\n        Use the `confirm_delete_url` URL if you are content to remove all analyses for a tool.\n        When you delete the last analysis in a set the value of `next_analysis_url` and `confirm_delete_url`\n        in the 200 response is `null`.\n\n        As an example of the deletion process,\n        let's imagine that you added a workflow that configured a particular code scanning tool\n        to analyze the code in a repository. This tool has added 15 analyses:\n        10 on the default branch, and another 5 on a topic branch.\n        You therefore have two separate sets of analyses for this tool.\n        You've now decided that you want to remove all of the analyses for the tool.\n        To do this you must make 15 separate deletion requests.\n        To start, you must find the deletable analysis for one of the sets,\n        step through deleting the analyses in that set,\n        and then repeat the process for the second set.\n        The procedure therefore consists of a nested loop:\n\n        **Outer loop**:\n        * List the analyses for the repository, filtered by tool.\n        * Parse this list to find a deletable analysis. If found:\n\n          **Inner loop**:\n          * Delete the identified analysis.\n          * Parse the response for the value of `confirm_delete_url` and, if found, use this in the next iteration.\n\n        The above process assumes that you want to remove all trace of the tool's analyses from the GitHub user interface, for the specified repository, and it therefore uses the `confirm_delete_url` value. Alternatively, you could use the `next_analysis_url` value, which would leave the last analysis in each set undeleted to avoid removing a tool's analysis entirely.\n      operationId: code-scanning/delete-analysis\n      tags:\n      - code-scanning\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#delete-a-code-scanning-analysis-from-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: analysis_id\n        in: path\n        description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses`\n          operation.\n        required: true\n        schema:\n          type: integer\n      - name: confirm_delete\n        in: query\n        description: 'Allow deletion if the specified analysis is the last in a set.\n          If you attempt to delete the final analysis in a set without setting this\n          parameter to `true`, you''ll get a 400 response with the message: `Analysis\n          is last of its type and deletion may result in the loss of historical alert\n          data. Please specify confirm_delete.`'\n        required: false\n        schema:\n          type: string\n          nullable: true\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/code-scanning-analysis-deletion\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/code-scanning-analysis-deletion\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_write\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: code-scanning\n  \"/repos/{owner}/{repo}/code-scanning/sarifs\":\n    post:\n      summary: Upload an analysis as SARIF data\n      description: |-\n        Uploads SARIF data containing the results of a code scanning analysis to make the results available in a repository. You must use an access token with the `security_events` scope to use this endpoint. GitHub Apps must have the `security_events` write permission to use this endpoint.\n\n        There are two places where you can upload code scanning results.\n         - If you upload to a pull request, for example `--ref refs/pull/42/merge` or `--ref refs/pull/42/head`, then the results appear as alerts in a pull request check. For more information, see \"[Triaging code scanning alerts in pull requests](/code-security/secure-coding/triaging-code-scanning-alerts-in-pull-requests).\"\n         - If you upload to a branch, for example `--ref refs/heads/my-branch`, then the results appear in the **Security** tab for your repository. For more information, see \"[Managing code scanning alerts for your repository](/code-security/secure-coding/managing-code-scanning-alerts-for-your-repository#viewing-the-alerts-for-a-repository).\"\n\n        You must compress the SARIF-formatted analysis data that you want to upload, using `gzip`, and then encode it as a Base64 format string. For example:\n\n        ```\n        gzip -c analysis-data.sarif | base64 -w0\n        ```\n\n        SARIF upload supports a maximum of 5000 results per analysis run. Any results over this limit are ignored and any SARIF uploads with more than 25,000 results are rejected. Typically, but not necessarily, a SARIF file contains a single run of a single tool. If a code scanning tool generates too many results, you should update the analysis configuration to run only the most important rules or queries.\n\n        The `202 Accepted`, response includes an `id` value.\n        You can use this ID to check the status of the upload by using this for the `/sarifs/{sarif_id}` endpoint.\n        For more information, see \"[Get information about a SARIF upload](/rest/reference/code-scanning#get-information-about-a-sarif-upload).\"\n      operationId: code-scanning/upload-sarif\n      tags:\n      - code-scanning\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#upload-a-sarif-file\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                commit_sha:\n                  \"$ref\": \"#/components/schemas/code-scanning-analysis-commit-sha\"\n                ref:\n                  \"$ref\": \"#/components/schemas/code-scanning-ref\"\n                sarif:\n                  \"$ref\": \"#/components/schemas/code-scanning-analysis-sarif-file\"\n                checkout_uri:\n                  description: |-\n                    The base directory used in the analysis, as it appears in the SARIF file.\n                    This property is used to convert file paths from absolute to relative, so that alerts can be mapped to their correct location in the repository.\n                  example: file:///github/workspace/\n                  type: string\n                  format: uri\n                started_at:\n                  description: 'The time that the analysis 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                  format: date-time\n                  type: string\n                tool_name:\n                  description: The name of the tool used to generate the code scanning\n                    analysis. If this parameter is not used, the tool name defaults\n                    to \"API\". If the uploaded SARIF contains a tool GUID, this will\n                    be available for filtering using the `tool_guid` parameter of\n                    operations such as `GET /repos/{owner}/{repo}/code-scanning/alerts`.\n                  type: string\n              required:\n              - commit_sha\n              - ref\n              - sarif\n      responses:\n        '202':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/code-scanning-sarifs-receipt\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-scanning-sarif-upload\"\n        '400':\n          description: Bad Request if the sarif field is invalid\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_write\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '413':\n          description: Payload Too Large if the sarif field is too large\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: code-scanning\n  \"/repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}\":\n    get:\n      summary: Get information about a SARIF upload\n      description: Gets information about a SARIF upload, including the status and\n        the URL of the analysis that was uploaded so that you can retrieve details\n        of the analysis. For more information, see \"[Get a code scanning analysis\n        for a repository](/rest/reference/code-scanning#get-a-code-scanning-analysis-for-a-repository).\"\n        You must use an access token with the `security_events` scope to use this\n        endpoint. GitHub Apps must have the `security_events` read permission to use\n        this endpoint.\n      operationId: code-scanning/get-sarif\n      tags:\n      - code-scanning\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/code-scanning#list-recent-code-scanning-analyses-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: sarif_id\n        description: The SARIF ID obtained after uploading.\n        in: path\n        schema:\n          type: string\n        required: true\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/code-scanning-sarifs-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-scanning-sarif-upload-status\"\n        '403':\n          \"$ref\": \"#/components/responses/code_scanning_forbidden_read\"\n        '404':\n          description: Not Found if the sarif id does not match any upload\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: code-scanning\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\n        You must have push access to the repository in order to list collaborators.\n      tags:\n      - repos\n      operationId: repos/list-collaborators\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: collaborators\n  \"/repos/{owner}/{repo}/collaborators/{username}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Not Found if user is not a collaborator\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: collaborators\n    put:\n      summary: Add a repository collaborator\n      description: |-\n        This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n\n        For more information on 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)\". There are restrictions on which permissions can be granted to organization members when an organization base role is in place. In this case, the permission being given must be equal to or higher than the org base permission. Otherwise, the request will fail with:\n\n        ```\n        Cannot assign {member} permission of {role name}\n        ```\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/repos#invitations).\n\n        **Rate limits**\n\n        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://docs.github.com/enterprise-server@3.3/rest/reference/repos#add-a-repository-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/username\"\n      requestBody:\n        required: false\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        category: repos\n        subcategory: collaborators\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: collaborators\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: 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        category: repos\n        subcategory: collaborators\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#custom-media-types). You can read more about the use of media types in the API [here](https://docs.github.com/enterprise-server@3.3/rest/overview/media-types/).\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: comments\n  \"/repos/{owner}/{repo}/comments/{comment_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        required: true\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        category: repos\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#comments).\n      tags:\n      - reactions\n      operationId: reactions/list-for-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n    post:\n      summary: Create reaction for a commit comment\n      description: Create a reaction to a [commit comment](https://docs.github.com/enterprise-server@3.3/rest/reference/repos#comments).\n        A response with an HTTP `200` status 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://docs.github.com/enterprise-server@3.3/rest/reference/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        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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        category: reactions\n        subcategory:\n  \"/repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}\":\n    delete:\n      summary: Delete a commit comment reaction\n      description: |-\n        **Note:** You can also specify a repository by `repository_id` using the route `DELETE /repositories/:repository_id/comments/:comment_id/reactions/:reaction_id`.\n\n        Delete a reaction to a [commit comment](https://docs.github.com/enterprise-server@3.3/rest/reference/repos#comments).\n      tags:\n      - reactions\n      operationId: reactions/delete-for-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#delete-a-commit-comment-reaction\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment-id\"\n      - \"$ref\": \"#/components/parameters/reaction-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\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        | Name | Type | Description |\n        | ---- | ---- | ----------- |\n        | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |\n        | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |\n        | `signature` | `string` | The signature that was extracted from the commit. |\n        | `payload` | `string` | The value that was signed. |\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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          format: date-time\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\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/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        category: repos\n        subcategory: commits\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: commits\n  \"/repos/{owner}/{repo}/commits/{commit_sha}/comments\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: 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://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n      tags:\n      - repos\n      operationId: repos/create-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        required: true\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        category: repos\n        subcategory: comments\n  \"/repos/{owner}/{repo}/commits/{commit_sha}/pulls\":\n    get:\n      summary: List pull requests associated with a commit\n      description: Lists the merged pull request that introduced the commit to the\n        repository. If the commit is not present in the default branch, additionally\n        returns open pull requests associated with the commit. The results may include\n        open and closed pull requests. Additional preview headers may be required\n        to see certain details for associated pull requests, such as whether a pull\n        request is in a draft state. For more information about previews that might\n        affect this endpoint, see the [List pull requests](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: commits\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        **Note:** If there are more than 300 files in the commit diff, the response will include pagination link headers for the remaining files, up to a limit of 3000 files. Each page contains the static commit information, and the only changes are to the file listing.\n\n        You can pass the appropriate [media type](https://docs.github.com/enterprise-server@3.3/rest/overview/media-types/#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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/#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        | Name | Type | Description |\n        | ---- | ---- | ----------- |\n        | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |\n        | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |\n        | `signature` | `string` | The signature that was extracted from the commit. |\n        | `payload` | `string` | The value that was signed. |\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-a-commit\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - name: ref\n        description: ref parameter\n        in: path\n        required: true\n        schema:\n          type: string\n        x-multi-segment: true\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        category: repos\n        subcategory: commits\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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        x-multi-segment: true\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      - name: app_id\n        in: query\n        required: false\n        schema:\n          type: integer\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: object\n                required:\n                - total_count\n                - check_runs\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        category: checks\n        subcategory: runs\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://docs.github.com/enterprise-server@3.3/rest/reference/checks#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        x-multi-segment: true\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                required:\n                - total_count\n                - check_suites\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        category: checks\n        subcategory: suites\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\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        x-multi-segment: 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                \"$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        category: repos\n        subcategory: statuses\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        x-multi-segment: 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/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        category: repos\n        subcategory: statuses\n  \"/repos/{owner}/{repo}/compare/{basehead}\":\n    get:\n      summary: Compare two commits\n      description: |-\n        The `basehead` param is comprised of two parts: `base` and `head`. Both 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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/#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        To process a response with a large number of commits, you can use (`per_page` or `page`) to paginate the results. When using paging, the list of changed files is only returned with page 1, but includes all changed files for the entire comparison. For more information on working with pagination, see \"[Traversing with pagination](/rest/guides/traversing-with-pagination).\"\n\n        When calling this API without any paging parameters (`per_page` or `page`), the returned list is limited to 250 commits and the last commit in the list is the most recent of the entire comparison. When a paging parameter is specified, the first commit in the returned list of each page is the earliest.\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        | Name | Type | Description |\n        | ---- | ---- | ----------- |\n        | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |\n        | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |\n        | `signature` | `string` | The signature that was extracted from the commit. |\n        | `payload` | `string` | The value that was signed. |\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#compare-two-commits\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - name: basehead\n        description: The base branch and head branch to compare. This parameter expects\n          the format `{base}...{head}`.\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        category: repos\n        subcategory: commits\n  \"/repos/{owner}/{repo}/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` and `repository` `full_name` of the content reference from the [`content_reference` event](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/apps/using-content-attachments/)\" for details about content attachments.\n\n        You must use an [installation access token](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps#create-a-content-attachment\n      parameters:\n      - name: owner\n        description: The owner of the repository. Determined from the `repository`\n          `full_name` of the `content_reference` event.\n        in: path\n        required: true\n        schema:\n          type: string\n      - name: repo\n        description: The name of the repository. Determined from the `repository`\n          `full_name` of the `content_reference` event.\n        in: path\n        required: true\n        schema:\n          type: string\n      - name: content_reference_id\n        description: The `id` of the `content_reference` event.\n        in: path\n        required: true\n        schema:\n          type: integer\n      requestBody:\n        required: true\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://docs.github.com/enterprise-server@3.3/rest/overview/media-types) in the `Accept` header:\n            ```shell\n            application/vnd.github.corsair-preview+json\n            ```\n        category: apps\n        subcategory: installations\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 the repository's root directory. See the description below\n        regarding what the API response includes for directories. \\n\\nFiles and symlinks\n        support [a custom media type](https://docs.github.com/enterprise-server@3.3/rest/reference/repos#custom-media-types)\n        for\\nretrieving the raw content or rendered HTML (when supported). All content\n        types support [a custom media\\ntype](https://docs.github.com/enterprise-server@3.3/rest/reference/repos#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://docs.github.com/enterprise-server@3.3/rest/reference/git#trees).\\n*\n        \\  This API has an upper limit of 1,000 files for a directory. If you need\n        to retrieve more files, use the [Git Trees\\nAPI](https://docs.github.com/enterprise-server@3.3/rest/reference/git#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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        x-multi-segment: true\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        category: repos\n        subcategory: contents\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        x-multi-segment: true\n      requestBody:\n        required: true\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        category: repos\n        subcategory: contents\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        x-multi-segment: true\n      requestBody:\n        required: true\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        category: repos\n        subcategory: contents\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://docs.github.com/enterprise-server@3.3/rest/reference/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: 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        category: repos\n        subcategory:\n  \"/repos/{owner}/{repo}/deployments\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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          nullable: 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/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        category: repos\n        subcategory: 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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-deployment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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://docs.github.com/enterprise-server@3.3/rest/reference/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                  oneOf:\n                  - type: object\n                    additionalProperties: true\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                  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              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        '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: Conflict when there is a merge conflict or the commit's status\n            checks failed\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: deployments\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: deployments\n    delete:\n      summary: Delete a deployment\n      description: |-\n        To ensure there can always be an active deployment, you can only delete an _inactive_ deployment. Anyone with `repo` or `repo_deployment` scopes can delete an inactive deployment.\n\n        To set a deployment as inactive, you must:\n\n        *   Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment.\n        *   Mark the active deployment as inactive by adding any non-successful deployment status.\n\n        For more information, see \"[Create a deployment](https://docs.github.com/enterprise-server@3.3/rest/reference/repos/#create-a-deployment)\" and \"[Create a deployment status](https://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-deployment-status).\"\n      tags:\n      - repos\n      operationId: repos/delete-deployment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#delete-a-deployment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/deployment-id\"\n      responses:\n        '204':\n          description: Response\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        category: repos\n        subcategory: deployments\n  \"/repos/{owner}/{repo}/deployments/{deployment_id}/statuses\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: deployments\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        required: true\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`.\n                    When you set a transient deployment to `inactive`, the deployment\n                    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                  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`.\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                  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              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        category: repos\n        subcategory: deployments\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: deployments\n  \"/repos/{owner}/{repo}/dispatches\":\n    post:\n      summary: Create a repository dispatch event\n      description: |-\n        You can use this endpoint to trigger a webhook event called `repository_dispatch` when you want activity that happens outside of GitHub Enterprise Server to trigger a GitHub Actions workflow or GitHub App webhook. You must configure your GitHub Actions workflow or GitHub App to run when the `repository_dispatch` event occurs. For an example `repository_dispatch` webhook payload, see \"[RepositoryDispatchEvent](https://docs.github.com/enterprise-server@3.3/webhooks/event-payloads/#repository_dispatch).\"\n\n        The `client_payload` parameter is available for any extra information that your workflow might need. This parameter is a JSON payload that will be passed on when the webhook event is dispatched. For example, the `client_payload` can include a message that a user would like to send using a GitHub Actions workflow. Or the `client_payload` can be used as a test to debug your workflow.\n\n        This endpoint requires write access to the repository by providing either:\n\n          - Personal access tokens with `repo` scope. For more information, see \"[Creating a personal access token for the command line](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line)\" in the GitHub Help documentation.\n          - GitHub Apps with both `metadata:read` and `contents:read&write` permissions.\n\n        This input example shows how you can use the `client_payload` as a test to debug your workflow.\n      tags:\n      - repos\n      operationId: repos/create-dispatch-event\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-repository-dispatch-event\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              required:\n              - event_type\n              properties:\n                event_type:\n                  type: string\n                  description: A custom webhook event name.\n                  minLength: 1\n                  maxLength: 100\n                client_payload:\n                  type: object\n                  description: JSON payload with extra information about the webhook\n                    event that your action or worklow may use.\n                  additionalProperties: true\n                  maxProperties: 10\n            example:\n              event_type: on-demand-test\n              client_payload:\n                unit: false\n                integration: true\n      responses:\n        '204':\n          description: Response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory:\n  \"/repos/{owner}/{repo}/environments\":\n    get:\n      summary: Get all environments\n      description: |-\n        Get all environments for a repository.\n\n        Anyone with read access to the repository can use this endpoint. If the repository is private, you must use an access token with the `repo` scope. GitHub Apps must have the `actions:read` permission to use this endpoint.\n      tags:\n      - repos\n      operationId: repos/get-all-environments\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-all-environments\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: object\n                properties:\n                  total_count:\n                    description: The number of environments in this repository\n                    example: 5\n                    type: integer\n                  environments:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/environment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/environments\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: environments\n  \"/repos/{owner}/{repo}/environments/{environment_name}\":\n    get:\n      summary: Get an environment\n      description: Anyone with read access to the repository can use this endpoint.\n        If the repository is private, you must use an access token with the `repo`\n        scope. GitHub Apps must have the `actions:read` permission to use this endpoint.\n      tags:\n      - repos\n      operationId: repos/get-environment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-an-environment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/environment-name\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/environment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/environment\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: environments\n    put:\n      summary: Create or update an environment\n      description: |-\n        Create or update an environment with protection rules, such as required reviewers. For more information about environment protection rules, see \"[Environments](/actions/reference/environments#environment-protection-rules).\"\n\n        **Note:** Although you can use this operation to specify that only branches that match specified name patterns can deploy to this environment, you must use the UI to set the name patterns. For more information, see \"[Environments](/actions/reference/environments#deployment-branches).\"\n\n        **Note:** To create or update secrets for an environment, see \"[Secrets](/rest/reference/actions#secrets).\"\n\n        You must authenticate using an access token with the repo scope to use this endpoint.\n      tags:\n      - repos\n      operationId: repos/create-or-update-environment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-or-update-an-environment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/environment-name\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              nullable: true\n              properties:\n                wait_timer:\n                  \"$ref\": \"#/components/schemas/wait-timer\"\n                reviewers:\n                  type: array\n                  nullable: true\n                  description: The people or teams that may review jobs that reference\n                    the environment. You can list up to six users or teams as reviewers.\n                    The reviewers must have at least read access to the repository.\n                    Only one of the required reviewers needs to approve the job for\n                    it to proceed.\n                  items:\n                    type: object\n                    properties:\n                      type:\n                        \"$ref\": \"#/components/schemas/deployment-reviewer-type\"\n                      id:\n                        type: integer\n                        description: The id of the user or team who can review the\n                          deployment\n                        example: 4532992\n                deployment_branch_policy:\n                  \"$ref\": \"#/components/schemas/deployment_branch_policy\"\n              additionalProperties: false\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/environment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/environment\"\n        '422':\n          description: Validation error when the environment name is invalid or when\n            `protected_branches` and `custom_branch_policies` in `deployment_branch_policy`\n            are set to the same value\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/basic-error\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: environments\n    delete:\n      summary: Delete an environment\n      description: You must authenticate using an access token with the repo scope\n        to use this endpoint.\n      tags:\n      - repos\n      operationId: repos/delete-an-environment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#delete-an-environment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/environment-name\"\n      responses:\n        '204':\n          description: Default response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: environments\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\n  \"/repos/{owner}/{repo}/forks\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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          - watchers\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        category: repos\n        subcategory: 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://support.github.com/contact?tags=dotcom-rest-api).\n      tags:\n      - repos\n      operationId: repos/create-fork\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-fork\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              nullable: true\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/full-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/full-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        category: repos\n        subcategory: forks\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://docs.github.com/enterprise-server@3.3/rest/reference/git#create-a-blob\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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        category: git\n        subcategory: blobs\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://docs.github.com/enterprise-server@3.3/rest/reference/git#get-a-blob\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: file_sha\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        category: git\n        subcategory: blobs\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        **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        | Name | Type | Description |\n        | ---- | ---- | ----------- |\n        | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |\n        | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |\n        | `signature` | `string` | The signature that was extracted from the commit. |\n        | `payload` | `string` | The value that was signed. |\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://docs.github.com/enterprise-server@3.3/rest/reference/git#create-a-commit\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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                      format: date-time\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                  required:\n                  - name\n                  - email\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                      format: date-time\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        category: git\n        subcategory: commits\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        | Name | Type | Description |\n        | ---- | ---- | ----------- |\n        | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |\n        | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |\n        | `signature` | `string` | The signature that was extracted from the commit. |\n        | `payload` | `string` | The value that was signed. |\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://docs.github.com/enterprise-server@3.3/rest/reference/git#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        category: git\n        subcategory: commits\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/guides/getting-started-with-the-git-database-api#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://docs.github.com/enterprise-server@3.3/rest/reference/git#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        x-multi-segment: 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/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        category: git\n        subcategory: refs\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/guides/getting-started-with-the-git-database-api#checking-mergeability-of-pull-requests)\".\n      tags:\n      - git\n      operationId: git/get-ref\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/git#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        x-multi-segment: 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        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: git\n        subcategory: refs\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://docs.github.com/enterprise-server@3.3/rest/reference/git#create-a-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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        category: git\n        subcategory: refs\n  \"/repos/{owner}/{repo}/git/refs/{ref}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/git#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        x-multi-segment: true\n      requestBody:\n        required: true\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        category: git\n        subcategory: refs\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://docs.github.com/enterprise-server@3.3/rest/reference/git#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        x-multi-segment: true\n      responses:\n        '204':\n          description: Response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: git\n        subcategory: refs\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://docs.github.com/enterprise-server@3.3/rest/reference/git#create-a-reference) the `refs/tags/[tag]` reference. If you want to create a lightweight tag, you only have to [create](https://docs.github.com/enterprise-server@3.3/rest/reference/git#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        | Name | Type | Description |\n        | ---- | ---- | ----------- |\n        | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |\n        | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |\n        | `signature` | `string` | The signature that was extracted from the commit. |\n        | `payload` | `string` | The value that was signed. |\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://docs.github.com/enterprise-server@3.3/rest/reference/git#create-a-tag-object\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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                      format: date-time\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                  - name\n                  - email\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        category: git\n        subcategory: tags\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        | Name | Type | Description |\n        | ---- | ---- | ----------- |\n        | `verified` | `boolean` | Indicates whether GitHub considers the signature in this commit to be verified. |\n        | `reason` | `string` | The reason for verified value. Possible values and their meanings are enumerated in table below. |\n        | `signature` | `string` | The signature that was extracted from the commit. |\n        | `payload` | `string` | The value that was signed. |\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://docs.github.com/enterprise-server@3.3/rest/reference/git#get-a-tag\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: tag_sha\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        category: git\n        subcategory: tags\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://docs.github.com/enterprise-server@3.3/rest/reference/git#create-a-commit)\" and \"[Update a reference](https://docs.github.com/enterprise-server@3.3/rest/reference/git#update-a-reference).\"\n      tags:\n      - git\n      operationId: git/create-tree\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/git#create-a-tree\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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: |\n                    The SHA1 of an existing Git tree object which will be used as the base for the new tree. If provided, a new Git tree object will be created from entries in the Git tree object pointed to by `base_tree` and entries defined in the `tree` parameter. Entries defined in the `tree` parameter will overwrite items from `base_tree` with the same `path`. If you're creating new changes on a branch, then normally you'd set `base_tree` to the SHA1 of the Git tree object of the current latest commit on the branch you're working on.\n                    If not provided, GitHub will create a new Git tree object from only the entries defined in the `tree` parameter. If you create a new commit pointing to such a tree, then all files which were a part of the parent commit's tree and were not defined in the `tree` parameter will be listed as deleted by the new commit.\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        category: git\n        subcategory: trees\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://docs.github.com/enterprise-server@3.3/rest/reference/git#get-a-tree\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: tree_sha\n        in: path\n        required: true\n        schema:\n          type: string\n        x-multi-segment: true\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        category: git\n        subcategory: trees\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              nullable: true\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-hook-config-params).\n                  properties:\n                    url:\n                      \"$ref\": \"#/components/schemas/webhook-config-url\"\n                    content_type:\n                      \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n                    secret:\n                      \"$ref\": \"#/components/schemas/webhook-config-secret\"\n                    insecure_ssl:\n                      \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\n                    token:\n                      type: string\n                      example: '\"abc\"'\n                    digest:\n                      type: string\n                      example: '\"sha256\"'\n                events:\n                  type: array\n                  description: Determines what [events](https://docs.github.com/enterprise-server@3.3/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              additionalProperties: false\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        category: repos\n        subcategory: webhooks\n  \"/repos/{owner}/{repo}/hooks/{hook_id}\":\n    get:\n      summary: Get a repository webhook\n      description: Returns a webhook configured in a repository. To get only the webhook\n        `config` properties, see \"[Get a webhook configuration for a repository](/rest/reference/repos#get-a-webhook-configuration-for-a-repository).\"\n      tags:\n      - repos\n      operationId: repos/get-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: webhooks\n    patch:\n      summary: Update a repository webhook\n      description: Updates a webhook configured in a repository. If you previously\n        had a `secret` set, you must provide the same `secret` or set a new `secret`\n        or the secret will be removed. If you are only updating individual webhook\n        `config` properties, use \"[Update a webhook configuration for a repository](/rest/reference/repos#update-a-webhook-configuration-for-a-repository).\"\n      tags:\n      - repos\n      operationId: repos/update-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        required: true\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-hook-config-params).\n                  properties:\n                    url:\n                      \"$ref\": \"#/components/schemas/webhook-config-url\"\n                    content_type:\n                      \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n                    secret:\n                      \"$ref\": \"#/components/schemas/webhook-config-secret\"\n                    insecure_ssl:\n                      \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\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://docs.github.com/enterprise-server@3.3/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        category: repos\n        subcategory: webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: webhooks\n  \"/repos/{owner}/{repo}/hooks/{hook_id}/config\":\n    get:\n      summary: Get a webhook configuration for a repository\n      description: |-\n        Returns the webhook configuration for a repository. To get more information about the webhook, including the `active` state and `events`, use \"[Get a repository webhook](/rest/reference/orgs#get-a-repository-webhook).\"\n\n        Access tokens must have the `read:repo_hook` or `repo` scope, and GitHub Apps must have the `repository_hooks:read` permission.\n      tags:\n      - repos\n      operationId: repos/get-webhook-config-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-a-webhook-configuration-for-a-repository\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/webhook-config\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/webhook-config\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: webhooks\n    patch:\n      summary: Update a webhook configuration for a repository\n      description: |-\n        Updates the webhook configuration for a repository. To update more information about the webhook, including the `active` state and `events`, use \"[Update a repository webhook](/rest/reference/orgs#update-a-repository-webhook).\"\n\n        Access tokens must have the `write:repo_hook` or `repo` scope, and GitHub Apps must have the `repository_hooks:write` permission.\n      tags:\n      - repos\n      operationId: repos/update-webhook-config-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#update-a-webhook-configuration-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              additionalProperties: false\n              properties:\n                url:\n                  \"$ref\": \"#/components/schemas/webhook-config-url\"\n                content_type:\n                  \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n                secret:\n                  \"$ref\": \"#/components/schemas/webhook-config-secret\"\n                insecure_ssl:\n                  \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\n              example:\n                content_type: json\n                insecure_ssl: '0'\n                secret: \"********\"\n                url: https://example.com/webhook\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/webhook-config\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/webhook-config\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: webhooks\n  \"/repos/{owner}/{repo}/hooks/{hook_id}/deliveries\":\n    get:\n      summary: List deliveries for a repository webhook\n      description: Returns a list of webhook deliveries for a webhook configured in\n        a repository.\n      tags:\n      - repos\n      operationId: repos/list-webhook-deliveries\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#list-deliveries-for-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/cursor\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/hook-delivery-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook-delivery-items\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: webhooks\n  \"/repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}\":\n    get:\n      summary: Get a delivery for a repository webhook\n      description: Returns a delivery for a webhook configured in a repository.\n      tags:\n      - repos\n      operationId: repos/get-webhook-delivery\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-a-delivery-for-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      - \"$ref\": \"#/components/parameters/delivery-id\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/hook-delivery\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook-delivery\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: webhooks\n  \"/repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts\":\n    post:\n      summary: Redeliver a delivery for a repository webhook\n      description: Redeliver a webhook delivery for a webhook configured in a repository.\n      tags:\n      - repos\n      operationId: repos/redeliver-webhook-delivery\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#redeliver-a-delivery-for-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      - \"$ref\": \"#/components/parameters/delivery-id\"\n      responses:\n        '202':\n          \"$ref\": \"#/components/responses/accepted\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: webhooks\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: webhooks\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: webhooks\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: apps\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: invitations\n  \"/repos/{owner}/{repo}/invitations/{invitation_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        required: false\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        category: repos\n        subcategory: invitations\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: invitations\n  \"/repos/{owner}/{repo}/issues\":\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-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        category: issues\n        subcategory:\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://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n      tags:\n      - issues\n      operationId: issues/create\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/issues#create-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  oneOf:\n                  - type: string\n                  - type: integer\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                  oneOf:\n                  - type: string\n                  - type: integer\n                    description: 'The `number` of the milestone to associate this\n                      issue 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                          nullable: true\n                        color:\n                          type: string\n                          nullable: true\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        category: issues\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: comments\n  \"/repos/{owner}/{repo}/issues/comments/{comment_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        required: true\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        category: issues\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: issues\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#comments).\n      tags:\n      - reactions\n      operationId: reactions/list-for-issue-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n    post:\n      summary: Create reaction for an issue comment\n      description: Create a reaction to an [issue comment](https://docs.github.com/enterprise-server@3.3/rest/reference/issues#comments).\n        A response with an HTTP `200` status 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://docs.github.com/enterprise-server@3.3/rest/reference/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        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n  \"/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}\":\n    delete:\n      summary: Delete an issue comment reaction\n      description: |-\n        **Note:** You can also specify a repository by `repository_id` using the route `DELETE delete /repositories/:repository_id/issues/comments/:comment_id/reactions/:reaction_id`.\n\n        Delete a reaction to an [issue comment](https://docs.github.com/enterprise-server@3.3/rest/reference/issues#comments).\n      tags:\n      - reactions\n      operationId: reactions/delete-for-issue-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#delete-an-issue-comment-reaction\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment-id\"\n      - \"$ref\": \"#/components/parameters/reaction-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#get-an-issue-event\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: event_id\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        category: issues\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-redirects-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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#list-pull-requests)\" endpoint.\n      tags:\n      - issues\n      operationId: issues/get\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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        category: issues\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  oneOf:\n                  - type: string\n                  - type: integer\n                  description: The title of the issue.\n                  nullable: true\n                body:\n                  type: string\n                  description: The contents of the issue.\n                  nullable: true\n                assignee:\n                  type: string\n                  nullable: true\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                  oneOf:\n                  - type: string\n                  - type: integer\n                    description: 'The `number` of the milestone to associate this\n                      issue with or `null` to remove current. _NOTE: Only users with\n                      push access can set the milestone for issues. The milestone\n                      is silently 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                          nullable: true\n                        color:\n                          type: string\n                          nullable: true\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        category: issues\n        subcategory:\n  \"/repos/{owner}/{repo}/issues/{issue_number}/assignees\":\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        required: false\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\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: issues\n        subcategory: 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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: issues\n        subcategory: assignees\n  \"/repos/{owner}/{repo}/issues/{issue_number}/comments\":\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: comments\n    post:\n      summary: Create an issue comment\n      description: This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications).\n        Creating content too quickly using this endpoint may result in secondary rate\n        limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\"\n        and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\"\n        for details.\n      tags:\n      - issues\n      operationId: issues/create-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        required: true\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        category: issues\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: events\n  \"/repos/{owner}/{repo}/issues/{issue_number}/labels\":\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  labels:\n                    type: array\n                    minItems: 1\n                    description: The names of the labels to add to the issue. You\n                      can 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              - type: array\n                minItems: 1\n                items:\n                  type: string\n              - type: object\n                properties:\n                  labels:\n                    type: array\n                    minItems: 1\n                    items:\n                      type: object\n                      properties:\n                        name:\n                          type: string\n                      required:\n                      - name\n              - type: array\n                minItems: 1\n                items:\n                  type: object\n                  properties:\n                    name:\n                      type: string\n                  required:\n                  - name\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        category: issues\n        subcategory: 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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        required: false\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  labels:\n                    type: array\n                    minItems: 1\n                    description: The names of the labels to add to the issue. You\n                      can 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              - type: array\n                minItems: 1\n                items:\n                  type: string\n              - type: object\n                properties:\n                  labels:\n                    type: array\n                    minItems: 1\n                    items:\n                      type: object\n                      properties:\n                        name:\n                          type: string\n                      required:\n                      - name\n              - type: array\n                minItems: 1\n                items:\n                  type: object\n                  properties:\n                    name:\n                      type: string\n                  required:\n                  - name\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        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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: Response\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        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        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\"\n      tags:\n      - issues\n      operationId: issues/lock\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              nullable: true\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: 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        category: issues\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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: 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        category: issues\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/issues).\n      tags:\n      - reactions\n      operationId: reactions/list-for-issue\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n    post:\n      summary: Create reaction for an issue\n      description: Create a reaction to an [issue](https://docs.github.com/enterprise-server@3.3/rest/reference/issues/).\n        A response with an HTTP `200` status 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://docs.github.com/enterprise-server@3.3/rest/reference/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        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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        '200':\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        '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        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: reactions\n        subcategory:\n  \"/repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}\":\n    delete:\n      summary: Delete an issue reaction\n      description: |-\n        **Note:** You can also specify a repository by `repository_id` using the route `DELETE /repositories/:repository_id/issues/:issue_number/reactions/:reaction_id`.\n\n        Delete a reaction to an [issue](https://docs.github.com/enterprise-server@3.3/rest/reference/issues/).\n      tags:\n      - reactions\n      operationId: reactions/delete-for-issue\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#delete-an-issue-reaction\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue-number\"\n      - \"$ref\": \"#/components/parameters/reaction-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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/timeline-issue-events\"\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        category: issues\n        subcategory: timeline\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: keys\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-deploy-key\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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        category: repos\n        subcategory: keys\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: keys\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: keys\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#create-a-label\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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](https://github.com/ikatyang/emoji-cheat-sheet).\"\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. Must be 100 characters\n                    or fewer.\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        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#get-a-label\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: name\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        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#update-a-label\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: name\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        required: false\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](https://github.com/ikatyang/emoji-cheat-sheet).\"\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. Must be 100 characters\n                    or fewer.\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        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#delete-a-label\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: name\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: repos\n        subcategory:\n  \"/repos/{owner}/{repo}/lfs\":\n    put:\n      summary: Enable Git LFS for a repository\n      description: ''\n      operationId: repos/enable-lfs-for-repo\n      tags:\n      - repos\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#enable-git-lfs-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '202':\n          \"$ref\": \"#/components/responses/accepted\"\n        '403':\n          description: |-\n            We will return a 403 with one of the following messages:\n\n            - Git LFS support not enabled because Git LFS is globally disabled.\n            - Git LFS support not enabled because Git LFS is disabled for the root repository in the network.\n            - Git LFS support not enabled because Git LFS is disabled for <owner>.\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: repos\n        subcategory: lfs\n    delete:\n      summary: Disable Git LFS for a repository\n      description: ''\n      operationId: repos/disable-lfs-for-repo\n      tags:\n      - repos\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#disable-git-lfs-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: repos\n        subcategory: lfs\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-repository-content), this method also supports [custom media types](https://docs.github.com/enterprise-server@3.3/rest/overview/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: licenses\n        subcategory:\n  \"/repos/{owner}/{repo}/merge-upstream\":\n    post:\n      summary: Sync a fork branch with the upstream repository\n      description: Sync a branch of a forked repository to keep it up-to-date with\n        the upstream repository.\n      tags:\n      - repos\n      operationId: repos/merge-upstream\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                branch:\n                  type: string\n                  description: The name of the branch which should be updated to match\n                    upstream.\n              required:\n              - branch\n            example:\n              branch: main\n      responses:\n        '200':\n          description: The branch has been successfully synced with the upstream repository\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/merged-upstream\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/merged-upstream\"\n        '409':\n          description: The branch could not be synced because of a merge conflict\n        '422':\n          description: The branch could not be synced for some other reason\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: branches\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#merge-a-branch\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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        '204':\n          description: Response when already merged\n        '404':\n          description: Not Found when the base or head does not exist\n        '409':\n          description: Conflict when there is a 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        category: repos\n        subcategory: merging\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: milestones\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#create-a-milestone\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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                  format: date-time\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        category: issues\n        subcategory: milestones\n  \"/repos/{owner}/{repo}/milestones/{milestone_number}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: milestones\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#update-a-milestone\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/milestone-number\"\n      requestBody:\n        required: false\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                  format: date-time\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        category: issues\n        subcategory: milestones\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: issues\n        subcategory: milestones\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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        category: issues\n        subcategory: labels\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: notifications\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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://docs.github.com/enterprise-server@3.3/rest/reference/activity#mark-repository-notifications-as-read\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                last_read_at:\n                  type: string\n                  format: date-time\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          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  url:\n                    type: string\n        '205':\n          description: Reset Content\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: activity\n        subcategory: notifications\n  \"/repos/{owner}/{repo}/pages\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: pages\n    post:\n      summary: Create a GitHub Enterprise Server Pages site\n      description: Configures a GitHub Enterprise Server Pages site. For more information,\n        see \"[About GitHub Pages](/github/working-with-github-pages/about-github-pages).\"\n      tags:\n      - repos\n      operationId: repos/create-pages-site\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-github-pages-site\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              description: The source branch and directory used to publish your Pages\n                site.\n              nullable: true\n              properties:\n                source:\n                  type: object\n                  description: The source branch and directory used to publish your\n                    Pages site.\n                  properties:\n                    branch:\n                      type: string\n                      description: The repository branch used to publish your site's\n                        source files.\n                    path:\n                      type: string\n                      description: 'The repository directory that includes the source\n                        files for the Pages site. Allowed paths are `/` or `/docs`.\n                        Default: `/`'\n                      enum:\n                      - \"/\"\n                      - \"/docs\"\n                      default: \"/\"\n                  required:\n                  - branch\n              required:\n              - source\n            example:\n              source:\n                branch: main\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        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: pages\n    put:\n      summary: Update information about a GitHub Enterprise Server Pages site\n      description: Updates information for a GitHub Enterprise Server Pages site.\n        For more information, see \"[About GitHub Pages](/github/working-with-github-pages/about-github-pages).\n      tags:\n      - repos\n      operationId: repos/update-information-about-pages-site\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#update-information-about-a-github-pages-site\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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                https_enforced:\n                  type: boolean\n                  description: Specify whether HTTPS should be enforced for the repository.\n                public:\n                  type: boolean\n                  description: Configures access controls for the GitHub Pages site.\n                    If public is set to `true`, the site is accessible to anyone on\n                    the internet. If set to `false`, the site will only be accessible\n                    to users who have at least `read` access to the repository that\n                    published the site. This includes anyone in your Enterprise if\n                    the repository is set to `internal` visibility. This feature is\n                    only available to repositories in an organization on an Enterprise\n                    plan.\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                    description: Update the source for the repository. Must include\n                      the branch name and path.\n                    properties:\n                      branch:\n                        type: string\n                        description: The repository branch used to publish your site's\n                          source files.\n                      path:\n                        type: string\n                        description: The repository directory that includes the source\n                          files for the Pages site. Allowed paths are `/` or `/docs`.\n                        enum:\n                        - \"/\"\n                        - \"/docs\"\n                    required:\n                    - branch\n                    - path\n              anyOf:\n              - required:\n                - source\n              - required:\n                - cname\n              - required:\n                - public\n              - required:\n                - https_enforced\n            example:\n              cname: octocatblog.com\n              source:\n                branch: main\n                path: \"/\"\n      responses:\n        '204':\n          description: 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        category: repos\n        subcategory: 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://docs.github.com/enterprise-server@3.3/rest/reference/repos#delete-a-github-pages-site\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Response\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        category: repos\n        subcategory: pages\n  \"/repos/{owner}/{repo}/pages/builds\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: pages\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: pages\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: pages\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-github-pages-build\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: build_id\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        category: repos\n        subcategory: pages\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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      - \"$ref\": \"#/components/parameters/direction\"\n      - name: sort\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - name\n          default: created\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        category: enterprise-admin\n        subcategory: repo-pre-receive-hooks\n  \"/repos/{owner}/{repo}/pre-receive-hooks/{pre_receive_hook_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: repo-pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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                  enum:\n                  - enabled\n                  - disabled\n                  - testing\n            example:\n              enforcement: enabled\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: enterprise-admin\n        subcategory: repo-pre-receive-hooks\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: repo-pre-receive-hooks\n  \"/repos/{owner}/{repo}/projects\":\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#create-a-repository-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: pulls\n        subcategory:\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://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-rate-limits)\" for details.\n      tags:\n      - pulls\n      operationId: pulls/create\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#create-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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        category: pulls\n        subcategory:\n  \"/repos/{owner}/{repo}/pulls/comments\":\n    get:\n      summary: List review comments in a repository\n      description: Lists review comments for all pull requests in a repository. By\n        default, review comments are in ascending order by ID.\n      tags:\n      - pulls\n      operationId: pulls/list-review-comments-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#list-review-comments-in-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: sort\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - created_at\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        category: pulls\n        subcategory: comments\n  \"/repos/{owner}/{repo}/pulls/comments/{comment_id}\":\n    get:\n      summary: Get a review comment for a pull request\n      description: Provides details for a review comment.\n      tags:\n      - pulls\n      operationId: pulls/get-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        category: pulls\n        subcategory: comments\n    patch:\n      summary: Update a review comment for a pull request\n      description: Enables you to edit a review comment.\n      tags:\n      - pulls\n      operationId: pulls/update-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: true\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        category: pulls\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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: Response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: pulls\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#review-comments).\n      tags:\n      - reactions\n      operationId: reactions/list-for-pull-request-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n    post:\n      summary: Create reaction for a pull request review comment\n      description: Create a reaction to a [pull request review comment](https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#comments).\n        A response with an HTTP `200` status 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://docs.github.com/enterprise-server@3.3/rest/reference/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        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n  \"/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}\":\n    delete:\n      summary: Delete a pull request comment reaction\n      description: |-\n        **Note:** You can also specify a repository by `repository_id` using the route `DELETE /repositories/:repository_id/pulls/comments/:comment_id/reactions/:reaction_id.`\n\n        Delete a reaction to a [pull request review comment](https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#review-comments).\n      tags:\n      - reactions\n      operationId: reactions/delete-for-pull-request-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#delete-a-pull-request-comment-reaction\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment-id\"\n      - \"$ref\": \"#/components/parameters/reaction-id\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls/#create-a-pull-request), or [edit](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/guides/getting-started-with-the-git-database-api#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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/#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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/#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        category: pulls\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        required: false\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        category: pulls\n        subcategory:\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/comments\":\n    get:\n      summary: List review comments on a pull request\n      description: Lists all review comments for a pull request. By default, review\n        comments are in ascending order by ID.\n      tags:\n      - pulls\n      operationId: pulls/list-review-comments\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        category: pulls\n        subcategory: comments\n    post:\n      summary: Create a review comment for a pull request\n      description: |2-\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://docs.github.com/enterprise-server@3.3/rest/reference/issues#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.\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://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n      tags:\n      - pulls\n      operationId: pulls/create-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: true\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 unless using\n                    `in_reply_to`**. The position in the diff where you want to add\n                    a review comment. Note this value is not the same as the line\n                    number in the file. For help finding the position value, read\n                    the note above.\"\n                side:\n                  type: string\n                  description: '**Required with `comfort-fade` preview unless using\n                    `in_reply_to`**. In a split diff view, the side of the diff that\n                    the pull request''s changes appear on. Can be `LEFT` or `RIGHT`.\n                    Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions\n                    that appear in green or unchanged lines that appear in white and\n                    are shown for context. For a multi-line comment, side represents\n                    whether the last line of the comment range is a deletion or addition.\n                    For more information, 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 unless using\n                    `in_reply_to`**. The line of the blob in the pull request diff\n                    that the comment applies to. For a multi-line comment, the last\n                    line of the range that your comment applies to.\"\n                start_line:\n                  type: integer\n                  description: '**Required when using multi-line comments unless using\n                    `in_reply_to`**. To create multi-line comments, you must use the\n                    `comfort-fade` preview header. The `start_line` is the first line\n                    in the pull request diff that your multi-line comment applies\n                    to. To learn more about multi-line comments, see \"[Commenting\n                    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 unless using\n                    `in_reply_to`**. To create multi-line comments, you must use the\n                    `comfort-fade` preview header. The `start_side` is the starting\n                    side of the diff that the comment applies to. Can be `LEFT` or\n                    `RIGHT`. To learn more about multi-line comments, see \"[Commenting\n                    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                  description: The ID of the review comment to reply to. To find the\n                    ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request).\n                    When specified, all parameters other than `body` in the request\n                    body are ignored.\n              required:\n              - body\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        category: pulls\n        subcategory: comments\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://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: true\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        category: pulls\n        subcategory: comments\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#list-commits)\n        endpoint.\n      tags:\n      - pulls\n      operationId: pulls/list-commits\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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/commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: pulls\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: pulls\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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: Not Found if pull request has not been merged\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: pulls\n        subcategory:\n    put:\n      summary: Merge a pull request\n      description: This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.3/github/managing-subscriptions-and-notifications-on-github/about-notifications).\n        Creating content too quickly using this endpoint may result in secondary rate\n        limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\"\n        and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\"\n        for details.\n      tags:\n      - pulls\n      operationId: pulls/merge\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              nullable: true\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: 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: Method Not Allowed 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        '409':\n          description: Conflict 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        '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        category: pulls\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        category: pulls\n        subcategory: review-requests\n    post:\n      summary: Request reviewers for a pull request\n      description: This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.3/github/managing-subscriptions-and-notifications-on-github/about-notifications).\n        Creating content too quickly using this endpoint may result in secondary rate\n        limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\"\n        and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\"\n        for details.\n      tags:\n      - pulls\n      operationId: pulls/request-reviewers\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: false\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              anyOf:\n              - required:\n                - reviewers\n              - required:\n                - team_reviewers\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: Unprocessable Entity 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        category: pulls\n        subcategory: review-requests\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: true\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              required:\n              - reviewers\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          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-simple\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: pulls\n        subcategory: review-requests\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/reviews\":\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        category: pulls\n        subcategory: reviews\n    post:\n      summary: Create a review for a pull request\n      description: |-\n        This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-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://docs.github.com/enterprise-server@3.3/rest/overview/media-types#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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: false\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        category: pulls\n        subcategory: reviews\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        category: pulls\n        subcategory: reviews\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: true\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        category: pulls\n        subcategory: reviews\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        category: pulls\n        subcategory: reviews\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        category: pulls\n        subcategory: reviews\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: true\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        category: pulls\n        subcategory: reviews\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://docs.github.com/enterprise-server@3.3/rest/reference/pulls#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        required: true\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        category: pulls\n        subcategory: reviews\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://docs.github.com/enterprise-server@3.3/rest/reference/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        required: false\n        content:\n          application/json:\n            schema:\n              type: object\n              nullable: true\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: pulls\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: contents\n  \"/repos/{owner}/{repo}/readme/{dir}\":\n    get:\n      summary: Get a repository README for a directory\n      description: |-\n        Gets the README from a repository directory.\n\n        READMEs support [custom media types](https://docs.github.com/enterprise-server@3.3/rest/reference/repos#custom-media-types) for retrieving the raw content or rendered HTML.\n      tags:\n      - repos\n      operationId: repos/get-readme-in-directory\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-a-repository-directory-readme\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: dir\n        description: The alternate path to look for a README file\n        in: path\n        required: true\n        schema:\n          type: string\n        x-multi-segment: true\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        category: repos\n        subcategory: contents\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: releases\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://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n      tags:\n      - repos\n      operationId: repos/create-release\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-release\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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                generate_release_notes:\n                  type: boolean\n                  description: Whether to automatically generate the name and body\n                    for this release. If `name` is specified, the specified name will\n                    be used; otherwise, a name will be automatically generated. If\n                    `body` is specified, the body will be pre-pended to the automatically\n                    generated notes.\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              generate_release_notes: 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        category: repos\n        subcategory: releases\n  \"/repos/{owner}/{repo}/releases/assets/{asset_id}\":\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://docs.github.com/enterprise-server@3.3/rest/overview/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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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://docs.github.com/enterprise-server@3.3/rest/overview/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        category: repos\n        subcategory: releases\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        required: false\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        category: repos\n        subcategory: releases\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: releases\n  \"/repos/{owner}/{repo}/releases/generate-notes\":\n    post:\n      summary: Generate release notes content for a release\n      description: Generate a name and body describing a [release](https://docs.github.com/enterprise-server@3.3/rest/reference/repos#releases).\n        The body content will be markdown formatted and contain information like the\n        changes since last release and users who contributed. The generated release\n        notes are not saved anywhere. They are intended to be generated and used when\n        creating a new release.\n      tags:\n      - repos\n      operationId: repos/generate-release-notes\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#generate-release-notes\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                tag_name:\n                  type: string\n                  description: The tag name for the release. This can be an existing\n                    tag or a new one.\n                target_commitish:\n                  type: string\n                  description: Specifies the commitish value that will be the target\n                    for the release's tag. Required if the supplied tag_name does\n                    not reference an existing tag. Ignored if the tag_name already\n                    exists.\n                previous_tag_name:\n                  type: string\n                  description: The name of the previous tag to use as the starting\n                    point for the release notes. Use to manually specify the range\n                    for the set of changes considered as part this release.\n                configuration_file_path:\n                  type: string\n                  description: Specifies a path to a file in the repository containing\n                    configuration settings used for generating the release notes.\n                    If unspecified, the configuration file located in the repository\n                    at '.github/release.yml' or '.github/release.yaml' will be used.\n                    If that is not present, the default configuration will be used.\n              required:\n              - tag_name\n            example:\n              tag_name: v1.0.0\n              target_commitish: main\n              previous_tag_name: v0.9.2\n              configuration_file_path: \".github/custom_release_config.yml\"\n      responses:\n        '200':\n          description: Name and body of generated release notes\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release-notes-content\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release-notes-content\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: releases\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: releases\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        x-multi-segment: true\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        category: repos\n        subcategory: releases\n  \"/repos/{owner}/{repo}/releases/{release_id}\":\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#hypermedia).\"\n      tags:\n      - repos\n      operationId: repos/get-release\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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        category: repos\n        subcategory: releases\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#update-a-release\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/release-id\"\n      requestBody:\n        required: false\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        category: repos\n        subcategory: releases\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: releases\n  \"/repos/{owner}/{repo}/releases/{release_id}/assets\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: releases\n    post:\n      summary: Upload a release asset\n      description: \"This endpoint makes use of [a Hypermedia relation](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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://docs.github.com/enterprise-server@3.3/rest/reference/repos#list-assets-for-a-release)\\\"\\nendpoint\n        lists the renamed filenames. For more information and help, contact [GitHub\n        Enterprise Server Support](https://support.github.com/contact?tags=dotcom-rest-api).\\n*\n        \\  If you upload an asset with the same filename as another uploaded asset,\n        you'll receive an error and must delete the old file before you can re-upload\n        the new asset.\"\n      tags:\n      - repos\n      operationId: repos/upload-release-asset\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        required: true\n        schema:\n          type: string\n      - name: label\n        in: query\n        schema:\n          type: string\n      requestBody:\n        required: false\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        '422':\n          description: Response if you upload an asset with the same filename as another\n            uploaded asset\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: releases\n  \"/repos/{owner}/{repo}/releases/{release_id}/reactions\":\n    post:\n      summary: Create reaction for a release\n      description: 'Create a reaction to a [release](https://docs.github.com/enterprise-server@3.3/rest/reference/repos#releases).\n        A response with a `Status: 200 OK` means that you already added the reaction\n        type to this release.'\n      tags:\n      - reactions\n      operationId: reactions/create-for-release\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions/#create-reaction-for-a-release\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/release-id\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#reaction-types)\n                    to add to the release.\n                  enum:\n                  - \"+1\"\n                  - laugh\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        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: reactions\n        subcategory:\n  \"/repos/{owner}/{repo}/secret-scanning/alerts\":\n    get:\n      summary: List secret scanning alerts for a repository\n      description: |-\n        Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\n        GitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.\n      tags:\n      - secret-scanning\n      operationId: secret-scanning/list-alerts-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#list-secret-scanning-alerts-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/secret-scanning-alert-state\"\n      - \"$ref\": \"#/components/parameters/secret-scanning-alert-secret-type\"\n      - \"$ref\": \"#/components/parameters/secret-scanning-alert-resolution\"\n      - \"$ref\": \"#/components/parameters/page\"\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/secret-scanning-alert\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/secret-scanning-alert-list\"\n        '404':\n          description: Repository is public or secret scanning is disabled for the\n            repository\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: secret-scanning\n        subcategory:\n  \"/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}\":\n    get:\n      summary: Get a secret scanning alert\n      description: |-\n        Gets a single secret scanning alert detected in a private repository. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\n        GitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.\n      tags:\n      - secret-scanning\n      operationId: secret-scanning/get-alert\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#get-a-secret-scanning-alert\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/alert-number\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/secret-scanning-alert\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/secret-scanning-alert-open\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          description: Repository is public, or secret scanning is disabled for the\n            repository, or the resource is not found\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: secret-scanning\n        subcategory:\n    patch:\n      summary: Update a secret scanning alert\n      description: |-\n        Updates the status of a secret scanning alert in a private repository. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\n        GitHub Apps must have the `secret_scanning_alerts` write permission to use this endpoint.\n      operationId: secret-scanning/update-alert\n      tags:\n      - secret-scanning\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#update-a-secret-scanning-alert\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/alert-number\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                state:\n                  \"$ref\": \"#/components/schemas/secret-scanning-alert-state\"\n                resolution:\n                  \"$ref\": \"#/components/schemas/secret-scanning-alert-resolution\"\n              required:\n              - state\n            example:\n              state: resolved\n              resolution: false_positive\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/secret-scanning-alert\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/secret-scanning-alert-resolved\"\n        '404':\n          description: Repository is public, or secret scanning is disabled for the\n            repository, or the resource is not found\n        '422':\n          description: State does not match the resolution\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        enabledForGitHubApps: true\n        githubCloudOnly: false\n        category: secret-scanning\n  \"/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations\":\n    get:\n      summary: List locations for a secret scanning alert\n      description: |-\n        Lists all locations for a given secret scanning alert for a private repository. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\n        GitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.\n      tags:\n      - secret-scanning\n      operationId: secret-scanning/list-locations-for-alert\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#list-locations-for-a-secret-scanning-alert\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/alert-number\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                type: array\n                description: List of locations where the secret was detected\n                items:\n                  \"$ref\": \"#/components/schemas/secret-scanning-location\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/secret-scanning-location-list\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          description: Repository is public, or secret scanning is disabled for the\n            repository, or the resource is not found\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: secret-scanning\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/) 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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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                anyOf:\n                - type: array\n                  items:\n                    \"$ref\": \"#/components/schemas/simple-user\"\n                - type: array\n                  items:\n                    \"$ref\": \"#/components/schemas/stargazer\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/simple-user-items-default-response\"\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        category: activity\n        subcategory: starring\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        '202':\n          \"$ref\": \"#/components/responses/accepted\"\n        '204':\n          \"$ref\": \"#/components/responses/no_content\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: statistics\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        '202':\n          \"$ref\": \"#/components/responses/accepted\"\n        '204':\n          \"$ref\": \"#/components/responses/no_content\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: statistics\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        '202':\n          \"$ref\": \"#/components/responses/accepted\"\n        '204':\n          \"$ref\": \"#/components/responses/no_content\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: statistics\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: statistics\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        '204':\n          \"$ref\": \"#/components/responses/no_content\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: statistics\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-commit-status\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: sha\n        in: path\n        required: true\n        schema:\n          type: string\n        x-multi-segment: true\n      requestBody:\n        required: true\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. This field is case-insensitive.\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        category: repos\n        subcategory: statuses\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: watching\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#get-a-repository-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: 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: Not Found 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        category: activity\n        subcategory: watching\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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://docs.github.com/enterprise-server@3.3/rest/reference/activity#set-a-repository-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: false\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        category: activity\n        subcategory: watching\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#set-a-repository-subscription).\n      tags:\n      - activity\n      operationId: activity/delete-repo-subscription\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/activity#delete-a-repository-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: activity\n        subcategory: watching\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: contents\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#get-all-repository-topics\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/per-page\"\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        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#replace-all-repository-topics\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\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        '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        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#transfer-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                new_owner:\n                  type: string\n                  description: The username or organization name the repository will\n                    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              required:\n              - new_owner\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/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/minimal-repository\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: repos\n        subcategory: contents\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/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. Note: For GitHub AE, use `repo` scope to create an internal 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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-repository-using-a-template\n      parameters:\n      - name: template_owner\n        in: path\n        required: true\n        schema:\n          type: string\n      - name: template_repo\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        required: true\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                include_all_branches:\n                  type: boolean\n                  description: 'Set to `true` to include the directory structure and\n                    files from all branches in the template repository, and not just\n                    the default branch. Default: `false`.'\n                  default: false\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              include_all_branches: false\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        category: repos\n        previews:\n        - required: true\n          name: baptiste\n          note: |-\n            Creating and using repository templates is currently available for developers to preview. To access this new endpoint during the preview period, you must provide a custom [media type](https://docs.github.com/enterprise-server@3.3/rest/overview/media-types) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.baptiste-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:\n        - For GitHub Enterprise Server, this endpoint will only list repositories available to all users on the enterprise.\n        - Pagination is powered exclusively by the `since` parameter. Use the [Link header](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/repos#list-public-repositories\n      parameters:\n      - \"$ref\": \"#/components/parameters/since-repo\"\n      - name: visibility\n        description: 'Specifies the types of repositories to return. Can be one of\n          `all` or `public`. Default: `public`. Note: For GitHub Enterprise Server\n          and GitHub AE, this endpoint will only list repositories available to all\n          users on the enterprise.'\n        in: query\n        required: false\n        schema:\n          type: string\n          default: public\n          example: all\n          enum:\n          - all\n          - public\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        category: repos\n        subcategory:\n  \"/repositories/{repository_id}/environments/{environment_name}/secrets\":\n    get:\n      summary: List environment secrets\n      description: Lists all secrets available in an environment without revealing\n        their encrypted values. You must authenticate using an access token with the\n        `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository\n        permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/list-environment-secrets\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#list-environment-secrets\n      parameters:\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      - \"$ref\": \"#/components/parameters/environment-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                required:\n                - total_count\n                - secrets\n                properties:\n                  total_count:\n                    type: integer\n                  secrets:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/actions-secret\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-secret-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/repositories/{repository_id}/environments/{environment_name}/secrets/public-key\":\n    get:\n      summary: Get an environment public key\n      description: Get the public key for an environment, which you need to encrypt\n        environment secrets. You need to encrypt a secret before you can create or\n        update secrets. Anyone with read access to the repository can use this endpoint.\n        If the repository is private you must use an access token with the `repo`\n        scope. GitHub Apps must have the `secrets` repository permission to use this\n        endpoint.\n      tags:\n      - actions\n      operationId: actions/get-environment-public-key\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-an-environment-public-key\n      parameters:\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      - \"$ref\": \"#/components/parameters/environment-name\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/actions-public-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-public-key\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n  \"/repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}\":\n    get:\n      summary: Get an environment secret\n      description: Gets a single environment secret without revealing its encrypted\n        value. You must authenticate using an access token with the `repo` scope to\n        use this endpoint. GitHub Apps must have the `secrets` repository permission\n        to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/get-environment-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-an-environment-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      - \"$ref\": \"#/components/parameters/environment-name\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      responses:\n        '200':\n          description: Response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/actions-secret\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/actions-secret\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n    put:\n      summary: Create or update an environment secret\n      description: |-\n        Creates or updates an environment secret with an encrypted value. Encrypt your secret using\n        [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). You must authenticate using an access\n        token with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use\n        this endpoint.\n\n        #### Example encrypting a secret using Node.js\n\n        Encrypt your secret using the [tweetsodium](https://github.com/github/tweetsodium) library.\n\n        ```\n        const sodium = require('tweetsodium');\n\n        const key = \"base64-encoded-public-key\";\n        const value = \"plain-text-secret\";\n\n        // Convert the message and key to Uint8Array's (Buffer implements that interface)\n        const messageBytes = Buffer.from(value);\n        const keyBytes = Buffer.from(key, 'base64');\n\n        // Encrypt using LibSodium.\n        const encryptedBytes = sodium.seal(messageBytes, keyBytes);\n\n        // Base64 the encrypted secret\n        const encrypted = Buffer.from(encryptedBytes).toString('base64');\n\n        console.log(encrypted);\n        ```\n\n\n        #### Example encrypting a secret using Python\n\n        Encrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/stable/public/#nacl-public-sealedbox) with Python 3.\n\n        ```\n        from base64 import b64encode\n        from nacl import encoding, public\n\n        def encrypt(public_key: str, secret_value: str) -> str:\n          \"\"\"Encrypt a Unicode string using the public key.\"\"\"\n          public_key = public.PublicKey(public_key.encode(\"utf-8\"), encoding.Base64Encoder())\n          sealed_box = public.SealedBox(public_key)\n          encrypted = sealed_box.encrypt(secret_value.encode(\"utf-8\"))\n          return b64encode(encrypted).decode(\"utf-8\")\n        ```\n\n        #### Example encrypting a secret using C#\n\n        Encrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.\n\n        ```\n        var secretValue = System.Text.Encoding.UTF8.GetBytes(\"mySecret\");\n        var publicKey = Convert.FromBase64String(\"2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvvcCU=\");\n\n        var sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey);\n\n        Console.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));\n        ```\n\n        #### Example encrypting a secret using Ruby\n\n        Encrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.\n\n        ```ruby\n        require \"rbnacl\"\n        require \"base64\"\n\n        key = Base64.decode64(\"+ZYvJDZMHUfBkJdyq5Zm9SKqeuBQ4sj+6sfjlH4CgG0=\")\n        public_key = RbNaCl::PublicKey.new(key)\n\n        box = RbNaCl::Boxes::Sealed.from_public_key(public_key)\n        encrypted_secret = box.encrypt(\"my_secret\")\n\n        # Print the base64 encoded secret\n        puts Base64.strict_encode64(encrypted_secret)\n        ```\n      tags:\n      - actions\n      operationId: actions/create-or-update-environment-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#create-or-update-an-environment-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      - \"$ref\": \"#/components/parameters/environment-name\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                encrypted_value:\n                  type: string\n                  description: Value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages)\n                    using the public key retrieved from the [Get an environment public\n                    key](https://docs.github.com/enterprise-server@3.3/rest/reference/actions#get-an-environment-public-key)\n                    endpoint.\n                  pattern: \"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$\"\n                key_id:\n                  type: string\n                  description: ID of the key you used to encrypt the secret.\n              required:\n              - encrypted_value\n              - key_id\n            example:\n              encrypted_value: c2VjcmV0\n              key_id: '012345678912345678'\n      responses:\n        '201':\n          description: Response when creating a secret\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/empty-object\"\n        '204':\n          description: Response when updating a secret\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\n    delete:\n      summary: Delete an environment secret\n      description: Deletes a secret in an environment using the secret name. You must\n        authenticate using an access token with the `repo` scope to use this endpoint.\n        GitHub Apps must have the `secrets` repository permission to use this endpoint.\n      tags:\n      - actions\n      operationId: actions/delete-environment-secret\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/actions#delete-an-environment-secret\n      parameters:\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      - \"$ref\": \"#/components/parameters/environment-name\"\n      - \"$ref\": \"#/components/parameters/secret-name\"\n      responses:\n        '204':\n          description: Default response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: actions\n        subcategory: secrets\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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                required:\n                - total_count\n                - incomplete_results\n                - items\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        category: search\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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                required:\n                - total_count\n                - incomplete_results\n                - items\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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: search\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/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, which means the oldest issues appear first in the search results.\n\n        **Note:** For [user-to-server](https://docs.github.com/developers/apps/identifying-and-authorizing-users-for-github-apps#user-to-server-requests) GitHub App requests, you can't retrieve a combination of issues and pull requests in a single query. Requests that don't include the `is:issue` or `is:pull-request` qualifier will receive an HTTP `422 Unprocessable Entity` response. To get results for both issues and pull requests, you must send separate queries for issues and pull requests. For more information about the `is` qualifier, see \"[Searching only issues or pull requests](https://docs.github.com/github/searching-for-information-on-github/searching-issues-and-pull-requests#search-only-issues-or-pull-requests).\"\n      tags:\n      - search\n      operationId: search/issues-and-pull-requests\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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                required:\n                - total_count\n                - incomplete_results\n                - items\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        category: search\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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      - \"$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                required:\n                - total_count\n                - incomplete_results\n                - items\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        category: search\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/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      tags:\n      - search\n      operationId: search/repos\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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                required:\n                - total_count\n                - incomplete_results\n                - items\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        category: search\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/search#constructing-a-search-query).\n        in: query\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: object\n                required:\n                - total_count\n                - incomplete_results\n                - items\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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: search\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/search#text-match-metadata). For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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                required:\n                - total_count\n                - incomplete_results\n                - items\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        category: search\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: management-console\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#start-a-configuration-process\n      responses:\n        '202':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: management-console\n  \"/setup/api/maintenance\":\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: management-console\n    post:\n      summary: Enable or disable maintenance mode\n      description: \"**Note:** The request body for this operation must be submitted\n        as `application/x-www-form-urlencoded` data. You can submit a parameter value\n        as a string, or you can use a tool such as `curl` to submit a parameter value\n        as the contents of a text file. For more information, see the [`curl` documentation](https://curl.se/docs/manpage.html#--data-urlencode).\"\n      operationId: enterprise-admin/enable-or-disable-maintenance-mode\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\n        content:\n          application/x-www-form-urlencoded:\n            schema:\n              type: object\n              properties:\n                maintenance:\n                  type: string\n                  description: |-\n                    A JSON string with the attributes `enabled` and `when`.\n\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              required:\n              - maintenance\n            example:\n              maintenance: '{\"enabled\":true, \"when\":\"now\"}'\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: management-console\n  \"/setup/api/settings\":\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: management-console\n    put:\n      summary: Set settings\n      description: |-\n        For a list of the available settings, see the [Get settings endpoint](https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-settings).\n\n        **Note:** The request body for this operation must be submitted as `application/x-www-form-urlencoded` data. You can submit a parameter value as a string, or you can use a tool such as `curl` to submit a parameter value as the contents of a text file. For more information, see the [`curl` documentation](https://curl.se/docs/manpage.html#--data-urlencode).\n      operationId: enterprise-admin/set-settings\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#set-settings\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/x-www-form-urlencoded:\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. For\n                    a list of the available settings, see the [Get settings endpoint](https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-settings).\n              required:\n              - settings\n            example:\n              settings: '{ \"enterprise\": { \"public_pages\": true }}'\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: management-console\n  \"/setup/api/settings/authorized-keys\":\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        category: enterprise-admin\n        subcategory: management-console\n    post:\n      summary: Add an authorized SSH key\n      description: \"**Note:** The request body for this operation must be submitted\n        as `application/x-www-form-urlencoded` data. You can submit a parameter value\n        as a string, or you can use a tool such as `curl` to submit a parameter value\n        as the contents of a text file. For more information, see the [`curl` documentation](https://curl.se/docs/manpage.html#--data-urlencode).\"\n      operationId: enterprise-admin/add-authorized-ssh-key\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\n        content:\n          application/x-www-form-urlencoded:\n            schema:\n              type: object\n              properties:\n                authorized_key:\n                  type: string\n                  description: The public SSH key.\n              required:\n              - authorized_key\n            example:\n              authorized_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: management-console\n    delete:\n      summary: Remove an authorized SSH key\n      description: \"**Note:** The request body for this operation must be submitted\n        as `application/x-www-form-urlencoded` data. You can submit a parameter value\n        as a string, or you can use a tool such as `curl` to submit a parameter value\n        as the contents of a text file. For more information, see the [`curl` documentation](https://curl.se/docs/manpage.html#--data-urlencode).\"\n      operationId: enterprise-admin/remove-authorized-ssh-key\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        required: true\n        content:\n          application/x-www-form-urlencoded:\n            schema:\n              type: object\n              properties:\n                authorized_key:\n                  type: string\n                  description: The public SSH key.\n              required:\n              - authorized_key\n            example:\n              authorized_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: management-console\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#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        **Note:** The request body for this operation must be submitted as `application/x-www-form-urlencoded` data. You can submit a parameter value as a string, or you can use a tool such as `curl` to submit a parameter value as the contents of a text file. For more information, see the [`curl` documentation](https://curl.se/docs/manpage.html#--data-urlencode).\n      operationId: enterprise-admin/create-enterprise-server-license\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#create-a-github-enterprise-server-license\n      responses:\n        '202':\n          description: Response\n      requestBody:\n        required: true\n        content:\n          application/x-www-form-urlencoded:\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. For a list of the available settings, see the [Get settings\n                    endpoint](https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#get-settings).\n              required:\n              - license\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: management-console\n  \"/setup/api/upgrade\":\n    post:\n      summary: Upgrade a license\n      description: |-\n        This API upgrades your license and also triggers the configuration process.\n\n        **Note:** The request body for this operation must be submitted as `application/x-www-form-urlencoded` data. You can submit a parameter value as a string, or you can use a tool such as `curl` to submit a parameter value as the contents of a text file. For more information, see the [`curl` documentation](https://curl.se/docs/manpage.html#--data-urlencode).\n      operationId: enterprise-admin/upgrade-license\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#upgrade-a-license\n      responses:\n        '202':\n          description: Response\n      requestBody:\n        content:\n          application/x-www-form-urlencoded:\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        category: enterprise-admin\n        subcategory: management-console\n  \"/teams/{team_id}\":\n    get:\n      summary: Get a team (Legacy)\n      description: \"**Deprecation Notice:** This endpoint route is deprecated and\n        will be removed from the Teams API. We recommend migrating your existing code\n        to use the [Get a team by name](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-a-team-by-name)\n        endpoint.\"\n      tags:\n      - teams\n      operationId: teams/get-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#get-a-team-legacy\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        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n    patch:\n      summary: Update a team (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Update a team](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#update-a-team) endpoint.\n\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      tags:\n      - teams\n      operationId: teams/update-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#update-a-team-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      requestBody:\n        required: true\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.\n                  nullable: true\n              required:\n              - name\n            example:\n              name: new team name\n              description: new team description\n              privacy: closed\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        '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        '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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n    delete:\n      summary: Delete a team (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Delete a team](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#delete-a-team) endpoint.\n\n        To delete a team, the authenticated user must be an organization owner or team maintainer.\n\n        If you are an organization owner, deleting a parent team will delete all of its child teams as well.\n      tags:\n      - teams\n      operationId: teams/delete-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#delete-a-team-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      responses:\n        '204':\n          description: Response\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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n  \"/teams/{team_id}/discussions\":\n    get:\n      summary: List discussions (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List discussions`](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-discussions) endpoint.\n\n        List all discussions on a team's page. OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/list-discussions-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-discussions-legacy\n      parameters:\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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussions\n      deprecated: true\n    post:\n      summary: Create a discussion (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`Create a discussion`](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-discussion) endpoint.\n\n        Creates a new discussion post on a team's page. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n      tags:\n      - teams\n      operationId: teams/create-discussion-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-discussion-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      requestBody:\n        required: true\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      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      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussions\n      deprecated: true\n  \"/teams/{team_id}/discussions/{discussion_number}\":\n    get:\n      summary: Get a discussion (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Get a discussion](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-a-discussion) endpoint.\n\n        Get a specific discussion on a team's page. OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/get-discussion-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-a-discussion-legacy\n      parameters:\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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussions\n      deprecated: true\n    patch:\n      summary: Update a discussion (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Update a discussion](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#update-a-discussion) endpoint.\n\n        Edits the title and body text of a discussion post. Only the parameters you provide are updated. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/update-discussion-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#update-a-discussion-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      requestBody:\n        required: false\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      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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussions\n      deprecated: true\n    delete:\n      summary: Delete a discussion (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`Delete a discussion`](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#delete-a-discussion) endpoint.\n\n        Delete a discussion from a team's page. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/delete-discussion-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#delete-a-discussion-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussions\n      deprecated: true\n  \"/teams/{team_id}/discussions/{discussion_number}/comments\":\n    get:\n      summary: List discussion comments (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [List discussion comments](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-discussion-comments) endpoint.\n\n        List all comments on a team discussion. OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/list-discussion-comments-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-discussion-comments-legacy\n      parameters:\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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussion-comments\n      deprecated: true\n    post:\n      summary: Create a discussion comment (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Create a discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-discussion-comment) endpoint.\n\n        Creates a new comment on a team discussion. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        This endpoint triggers [notifications](https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.3/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.\n      tags:\n      - teams\n      operationId: teams/create-discussion-comment-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-discussion-comment-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      requestBody:\n        required: true\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      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      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussion-comments\n      deprecated: true\n  \"/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}\":\n    get:\n      summary: Get a discussion comment (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Get a discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-a-discussion-comment) endpoint.\n\n        Get a specific comment on a team discussion. OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/get-discussion-comment-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-a-discussion-comment-legacy\n      parameters:\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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussion-comments\n      deprecated: true\n    patch:\n      summary: Update a discussion comment (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Update a discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#update-a-discussion-comment) endpoint.\n\n        Edits the body text of a discussion comment. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/update-discussion-comment-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#update-a-discussion-comment-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      requestBody:\n        required: true\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      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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussion-comments\n      deprecated: true\n    delete:\n      summary: Delete a discussion comment (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Delete a discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#delete-a-discussion-comment) endpoint.\n\n        Deletes a comment on a team discussion. OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/delete-discussion-comment-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#delete-a-discussion-comment-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: discussion-comments\n      deprecated: true\n  \"/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions\":\n    get:\n      summary: List reactions for a team discussion comment (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List reactions for a team discussion comment`](https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#list-reactions-for-a-team-discussion-comment) endpoint.\n\n        List the reactions to a [team discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussion-comments). OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - reactions\n      operationId: reactions/list-for-team-discussion-comment-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions/#list-reactions-for-a-team-discussion-comment-legacy\n      parameters:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        removalDate: '2021-02-21'\n        deprecationDate: '2020-02-26'\n        category: reactions\n        subcategory:\n      deprecated: true\n    post:\n      summary: Create reaction for a team discussion comment (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"[Create reaction for a team discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#create-reaction-for-a-team-discussion-comment)\" endpoint.\n\n        Create a reaction to a [team discussion comment](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussion-comments). OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/). A response with an HTTP `200` status means that you already added the reaction type to this team discussion comment.\n      tags:\n      - reactions\n      operationId: reactions/create-for-team-discussion-comment-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions/#create-reaction-for-a-team-discussion-comment-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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      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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-21'\n        deprecationDate: '2020-02-26'\n        category: reactions\n        subcategory:\n      deprecated: true\n  \"/teams/{team_id}/discussions/{discussion_number}/reactions\":\n    get:\n      summary: List reactions for a team discussion (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List reactions for a team discussion`](https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#list-reactions-for-a-team-discussion) endpoint.\n\n        List the reactions to a [team discussion](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussions). OAuth access tokens require the `read:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - reactions\n      operationId: reactions/list-for-team-discussion-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions/#list-reactions-for-a-team-discussion-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - name: content\n        description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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        removalDate: '2021-02-21'\n        deprecationDate: '2020-02-26'\n        category: reactions\n        subcategory:\n      deprecated: true\n    post:\n      summary: Create reaction for a team discussion (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`Create reaction for a team discussion`](https://docs.github.com/enterprise-server@3.3/rest/reference/reactions#create-reaction-for-a-team-discussion) endpoint.\n\n        Create a reaction to a [team discussion](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#discussions). OAuth access tokens require the `write:discussion` [scope](https://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/). A response with an HTTP `200` status means that you already added the reaction type to this team discussion.\n      tags:\n      - reactions\n      operationId: reactions/create-for-team-discussion-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/reactions/#create-reaction-for-a-team-discussion-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      requestBody:\n        required: true\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://docs.github.com/enterprise-server@3.3/rest/reference/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      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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        removalDate: '2021-02-21'\n        deprecationDate: '2020-02-26'\n        category: reactions\n        subcategory:\n      deprecated: true\n  \"/teams/{team_id}/members\":\n    get:\n      summary: List team members (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-team-members) endpoint.\n\n        Team members will include the members of child teams.\n      tags:\n      - teams\n      operationId: teams/list-members-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-team-members-legacy\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        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: members\n      deprecated: true\n  \"/teams/{team_id}/members/{username}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/teams#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://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-team-member-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: if user is a member\n        '404':\n          description: if user is not a member\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: members\n      deprecated: true\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://docs.github.com/enterprise-server@3.3/rest/reference/teams#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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\"\n      tags:\n      - teams\n      operationId: teams/add-member-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-team-member-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n        '404':\n          description: Not Found if team synchronization is set up\n        '422':\n          description: Unprocessable Entity if you attempt to add an organization\n            to a team or you attempt to add a user to a team when they are not a member\n            of at least one other team in the same organization\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/teams#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://docs.github.com/enterprise-server@3.3/rest/reference/teams#remove-team-member-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n        '404':\n          description: Not Found if team synchronization is setup\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: members\n      deprecated: true\n  \"/teams/{team_id}/memberships/{username}\":\n    get:\n      summary: Get team membership for a user (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Get team membership for a user](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-team-membership-for-a-user) endpoint.\n\n        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:**\n        The response contains the `state` of the membership and the member's `role`.\n\n        The `role` for organization owners is set to `maintainer`. For more information about `maintainer` roles, see [Create a team](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#create-a-team).\n      tags:\n      - teams\n      operationId: teams/get-membership-for-user-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#get-team-membership-for-a-user-legacy\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-is-a-team-maintainer:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-user-is-a-team-maintainer\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: members\n      deprecated: true\n    put:\n      summary: Add or update team membership for a user (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Add or update team membership for a user](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-membership-for-a-user) endpoint.\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        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        **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        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      tags:\n      - teams\n      operationId: teams/add-or-update-membership-for-user-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-membership-for-a-user-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      requestBody:\n        required: false\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      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-pending:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-users-membership-with-team-is-now-pending\"\n        '403':\n          description: Forbidden if team synchronization is set up\n        '422':\n          description: Unprocessable Entity if you attempt to add an organization\n            to a team\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: members\n      deprecated: true\n    delete:\n      summary: Remove team membership for a user (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Remove team membership for a user](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#remove-team-membership-for-a-user) endpoint.\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 membership between a user and a team, the authenticated user must have 'admin' permissions to the team or be an owner of the organization that the team is associated with. Removing team membership does not delete the user, it just removes their membership 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-membership-for-user-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams#remove-team-membership-for-a-user-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n        '403':\n          description: if team synchronization is set up\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory: members\n      deprecated: true\n  \"/teams/{team_id}/projects\":\n    get:\n      summary: List team projects (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team projects`](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-team-projects) endpoint.\n\n        Lists the organization projects for a team.\n      tags:\n      - teams\n      operationId: teams/list-projects-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#list-team-projects-legacy\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/team-project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-project-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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n  \"/teams/{team_id}/projects/{project_id}\":\n    get:\n      summary: Check team permissions for a project (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Check team permissions for a project](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#check-team-permissions-for-a-project) endpoint.\n\n        Checks whether a team has `read`, `write`, or `admin` permissions for an organization project. The response includes projects inherited from a parent team.\n      tags:\n      - teams\n      operationId: teams/check-permissions-for-project-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#check-team-permissions-for-a-project-legacy\n      parameters:\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: Not Found if project is not managed by this team\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n    put:\n      summary: Add or update team project permissions (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Add or update team project permissions](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-project-permissions) endpoint.\n\n        Adds an organization project to a team. To add a project to a team or update the team's permission on a project, the authenticated user must have `admin` permissions for the project. The project and team must be part of the same organization.\n      tags:\n      - teams\n      operationId: teams/add-or-update-project-permissions-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#add-or-update-team-project-permissions-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/project-id\"\n      requestBody:\n        required: false\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\\\"\"\n                  enum:\n                  - read\n                  - write\n                  - admin\n      responses:\n        '204':\n          description: Response\n        '403':\n          description: Forbidden 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://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-project-permissions\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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n    delete:\n      summary: Remove a project from a team (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Remove a project from a team](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#remove-a-project-from-a-team) endpoint.\n\n        Removes an organization project from a team. An organization owner or a team maintainer can remove any project from the team. To remove a project from a team as an organization member, the authenticated user must have `read` access to both the team and project, or `admin` access to the team or project. **Note:** This endpoint removes the project from the team, but does not delete it.\n      tags:\n      - teams\n      operationId: teams/remove-project-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#remove-a-project-from-a-team-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/project-id\"\n      responses:\n        '204':\n          description: 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      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n  \"/teams/{team_id}/repos\":\n    get:\n      summary: List team repositories (Legacy)\n      description: \"**Deprecation Notice:** This endpoint route is deprecated and\n        will be removed from the Teams API. We recommend migrating your existing code\n        to use the new [List team repositories](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-team-repositories)\n        endpoint.\"\n      tags:\n      - teams\n      operationId: teams/list-repos-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#list-team-repositories-legacy\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        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n  \"/teams/{team_id}/repos/{owner}/{repo}\":\n    get:\n      summary: Check team permissions for a repository (Legacy)\n      description: |-\n        **Note**: Repositories inherited through a parent team will also be checked.\n\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Check team permissions for a repository](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#check-team-permissions-for-a-repository) endpoint.\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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/) via the `Accept` header:\n      tags:\n      - teams\n      operationId: teams/check-permissions-for-repo-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#check-team-permissions-for-a-repository-legacy\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/team-repository\"\n              examples:\n                alternative-response-with-extra-repository-information:\n                  \"$ref\": \"#/components/examples/team-repository-alternative-response-with-extra-repository-information\"\n        '204':\n          description: Response if repository is managed by this team\n        '404':\n          description: Not Found if repository is not managed by this team\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n    put:\n      summary: Add or update team repository permissions (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new \"[Add or update team repository permissions](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#add-or-update-team-repository-permissions)\" endpoint.\n\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\"\n      tags:\n      - teams\n      operationId: teams/add-or-update-repo-permissions-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#add-or-update-team-repository-permissions-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        required: false\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                  enum:\n                  - pull\n                  - push\n                  - admin\n      responses:\n        '204':\n          description: Response\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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n    delete:\n      summary: Remove a repository from a team (Legacy)\n      description: |-\n        **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Remove a repository from a team](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#remove-a-repository-from-a-team) endpoint.\n\n        If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team.\n      tags:\n      - teams\n      operationId: teams/remove-repo-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#remove-a-repository-from-a-team-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\n  \"/teams/{team_id}/teams\":\n    get:\n      summary: List child teams (Legacy)\n      description: \"**Deprecation Notice:** This endpoint route is deprecated and\n        will be removed from the Teams API. We recommend migrating your existing code\n        to use the new [`List child teams`](https://docs.github.com/enterprise-server@3.3/rest/reference/teams#list-child-teams)\n        endpoint.\"\n      tags:\n      - teams\n      operationId: teams/list-child-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/teams/#list-child-teams-legacy\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: if child teams exist\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team\"\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        '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        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n        category: teams\n        subcategory:\n      deprecated: true\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: users\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/users/#update-the-authenticated-user\n      parameters: []\n      requestBody:\n        required: false\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        category: users\n        subcategory:\n  \"/user/emails\":\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-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: 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-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#add-an-email-address-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        required: false\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        category: users\n        subcategory: emails\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-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#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: 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        category: users\n        subcategory: emails\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://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: followers\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-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: followers\n  \"/user/following/{username}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/users#check-if-a-person-is-followed-by-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: if the person is followed by the authenticated user\n        '404':\n          description: if the person is not followed by the authenticated 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        category: users\n        subcategory: followers\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/users#follow-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: 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        category: users\n        subcategory: followers\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://docs.github.com/enterprise-server@3.3/rest/reference/users#unfollow-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: 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        category: users\n        subcategory: followers\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/list-gpg-keys-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: gpg-keys\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: users/create-gpg-key-for-authenticated-user\n      tags:\n      - users\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#create-a-gpg-key-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        required: true\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        category: users\n        subcategory: gpg-keys\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/get-gpg-key-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: gpg-keys\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/delete-gpg-key-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#delete-a-gpg-key-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/gpg-key-id\"\n      responses:\n        '204':\n          description: 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        category: users\n        subcategory: gpg-keys\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps#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                required:\n                - total_count\n                - installations\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        category: apps\n        subcategory: installations\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/apps#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                required:\n                - total_count\n                - repositories\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        category: apps\n        subcategory: installations\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://docs.github.com/enterprise-server@3.3/github/authenticating-to-github/creating-a-personal-access-token) or [Basic Authentication](https://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#basic-authentication)) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/add-repo-to-installation-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#add-a-repository-to-an-app-installation\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation-id\"\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      responses:\n        '204':\n          description: 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        category: apps\n        subcategory: installations\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://docs.github.com/enterprise-server@3.3/github/authenticating-to-github/creating-a-personal-access-token) or [Basic Authentication](https://docs.github.com/enterprise-server@3.3/rest/overview/other-authentication-methods#basic-authentication)) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/remove-repo-from-installation-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/apps#remove-a-repository-from-an-app-installation\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation-id\"\n      - \"$ref\": \"#/components/parameters/repository-id\"\n      responses:\n        '204':\n          description: 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        category: apps\n        subcategory: installations\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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` or `repos`: All issues the authenticated\n          user 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          - repos\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        category: issues\n        subcategory:\n  \"/user/keys\":\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/list-public-ssh-keys-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: 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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: users/create-public-ssh-key-for-authenticated-user\n      tags:\n      - users\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#create-a-public-ssh-key-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        required: true\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        category: users\n        subcategory: keys\n  \"/user/keys/{key_id}\":\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/get-public-ssh-key-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: keys\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/delete-public-ssh-key-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#delete-a-public-ssh-key-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/key-id\"\n      responses:\n        '204':\n          description: 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        category: users\n        subcategory: keys\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#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        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/orgs#update-an-organization-membership-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        required: true\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        category: orgs\n        subcategory: members\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: orgs\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/projects#create-a-user-project\n      parameters: []\n      requestBody:\n        required: true\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        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/users#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-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: emails\n  \"/user/repos\":\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#list-repositories-for-the-authenticated-user\n      parameters:\n      - name: visibility\n        description: 'Can be one of `all`, `public`, or `private`. Note: For GitHub\n          AE, can be one of `all`, `internal`, 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          Note: For GitHub AE, can be one of `all`, `owner`, `internal`, `private`,\n          `member`. Default: `all`  \\n  \\nWill cause a `422` error if used in the\n          same request as **visibility** or **affiliation**. Will cause a `422` error\n          if used in 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        '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        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/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. Note: For GitHub AE, use `repo` scope to create an internal 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://docs.github.com/enterprise-server@3.3/rest/reference/repos#create-a-repository-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        required: true\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.\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                allow_auto_merge:\n                  description: Whether to allow Auto-merge to be used on pull requests.\n                  default: false\n                  type: boolean\n                  example: false\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        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/repos#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        category: repos\n        subcategory: invitations\n  \"/user/repository_invitations/{invitation_id}\":\n    patch:\n      summary: Accept a repository invitation\n      description: ''\n      tags:\n      - repos\n      operationId: repos/accept-invitation-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#accept-a-repository-invitation\n      parameters:\n      - \"$ref\": \"#/components/parameters/invitation-id\"\n      responses:\n        '204':\n          description: 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        category: repos\n        subcategory: invitations\n    delete:\n      summary: Decline a repository invitation\n      description: ''\n      tags:\n      - repos\n      operationId: repos/decline-invitation-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/repos#decline-a-repository-invitation\n      parameters:\n      - \"$ref\": \"#/components/parameters/invitation-id\"\n      responses:\n        '204':\n          description: 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        category: repos\n        subcategory: invitations\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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/) 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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: starring\n  \"/user/starred/{owner}/{repo}\":\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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: Not Found 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        category: activity\n        subcategory: starring\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\"\n      tags:\n      - activity\n      operationId: activity/star-repo-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/activity#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: 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        category: activity\n        subcategory: starring\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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: 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        category: activity\n        subcategory: starring\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: watching\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://docs.github.com/enterprise-server@3.3/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/)\n        when authenticating via [OAuth](https://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: teams\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/users#list-users\n      parameters:\n      - \"$ref\": \"#/components/parameters/since-user\"\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        category: users\n        subcategory:\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://docs.github.com/enterprise-server@3.3/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' below\"\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/users#emails)\".\n      tags:\n      - users\n      operationId: users/get-by-username\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/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        category: users\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: followers\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://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: followers\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://docs.github.com/enterprise-server@3.3/rest/reference/users#check-if-a-user-follows-another-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - name: target_user\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '204':\n          description: if the user follows the target user\n        '404':\n          description: if the user does not follow the target user\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: users\n        subcategory: followers\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: gists\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: gpg-keys\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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: users\n        subcategory:\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://docs.github.com/enterprise-server@3.3/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: apps\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/users#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        category: users\n        subcategory: keys\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://docs.github.com/enterprise-server@3.3/rest/reference/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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: orgs\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/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        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: projects\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: events\n  \"/users/{username}/repos\":\n    get:\n      summary: List repositories for a user\n      description: 'Lists public repositories for the specified user. Note: For GitHub\n        AE, this endpoint will list internal 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://docs.github.com/enterprise-server@3.3/rest/reference/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        category: repos\n        subcategory:\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#promote-a-user-to-be-a-site-administrator\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#demote-a-site-administrator\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/overview/media-types/) 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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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                anyOf:\n                - type: array\n                  items:\n                    \"$ref\": \"#/components/schemas/starred-repository\"\n                - type: array\n                  items:\n                    \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/repository-items-default-response\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        category: activity\n        subcategory: starring\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://docs.github.com/enterprise-server@3.3/rest/reference/activity#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        category: activity\n        subcategory: watching\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://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#http-verbs).\"\n      operationId: enterprise-admin/suspend-user\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#suspend-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              nullable: true\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        category: enterprise-admin\n        subcategory: users\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://docs.github.com/enterprise-server@3.3/rest/reference/enterprise-admin#unsuspend-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              nullable: true\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        category: enterprise-admin\n        subcategory: users\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        category: meta\ncomponents:\n  parameters:\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    hook-id:\n      name: hook_id\n      in: path\n      required: true\n      schema:\n        type: integer\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    key-ids:\n      name: key_ids\n      in: path\n      required: true\n      schema:\n        type: string\n    team-id:\n      name: team_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    org:\n      name: org\n      in: path\n      required: true\n      schema:\n        type: string\n    pre-receive-environment-id:\n      name: pre_receive_environment_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    pre-receive-hook-id:\n      name: pre_receive_hook_id\n      description: pre_receive_hook_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    token-id:\n      name: token_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    cursor:\n      name: cursor\n      description: 'Used for pagination: the starting delivery from which the page\n        of deliveries is fetched. Refer to the `link` header for the next and previous\n        page cursors.'\n      in: query\n      required: false\n      schema:\n        type: string\n    delivery-id:\n      name: delivery_id\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        format: date-time\n    installation-id:\n      name: installation_id\n      description: installation_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\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      description: The client ID of your GitHub app.\n      schema:\n        type: string\n    access-token:\n      name: access_token\n      in: path\n      required: true\n      schema:\n        type: string\n    app-slug:\n      name: app_slug\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    enterprise:\n      name: enterprise\n      description: The slug version of the enterprise name. You can also substitute\n        this value with the enterprise id.\n      in: path\n      required: true\n      schema:\n        type: string\n    org-id:\n      name: org_id\n      description: Unique identifier of an organization.\n      in: path\n      required: true\n      schema:\n        type: integer\n    runner-group-id:\n      name: runner_group_id\n      description: Unique identifier of the self-hosted runner group.\n      in: path\n      required: true\n      schema:\n        type: integer\n    runner-id:\n      name: runner_id\n      description: Unique identifier of the self-hosted runner.\n      in: path\n      required: true\n      schema:\n        type: integer\n    audit-log-phrase:\n      name: phrase\n      description: A search phrase. For more information, see [Searching the audit\n        log](https://docs.github.com/enterprise-server@3.3/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization#searching-the-audit-log).\n      in: query\n      required: false\n      schema:\n        type: string\n    audit-log-after:\n      name: after\n      description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#link-header).\n        If specified, the query only searches for events after this cursor.\n      in: query\n      required: false\n      schema:\n        type: string\n    audit-log-before:\n      name: before\n      description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.3/rest/overview/resources-in-the-rest-api#link-header).\n        If specified, the query only searches for events before this cursor.\n      in: query\n      required: false\n      schema:\n        type: string\n    audit-log-order:\n      name: order\n      description: |-\n        The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`.\n\n        The default is `desc`.\n      in: query\n      required: false\n      schema:\n        type: string\n        enum:\n        - desc\n        - asc\n    gist-id:\n      name: gist_id\n      description: gist_id parameter\n      in: path\n      required: true\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    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    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    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    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        format: date-time\n    thread-id:\n      name: thread_id\n      description: thread_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    since-org:\n      name: since\n      description: An organization ID. Only return organizations with an ID greater\n        than this ID.\n      in: query\n      required: false\n      schema:\n        type: integer\n    repository-id:\n      name: repository_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    secret-name:\n      name: secret_name\n      description: secret_name parameter\n      in: path\n      required: true\n      schema:\n        type: string\n    secret-scanning-alert-state:\n      name: state\n      in: query\n      description: Set to `open` or `resolved` to only list secret scanning alerts\n        in a specific state.\n      required: false\n      schema:\n        type: string\n        enum:\n        - open\n        - resolved\n    secret-scanning-alert-secret-type:\n      name: secret_type\n      in: query\n      description: |-\n        A comma-separated list of secret types to return. By default all secret types are returned.\n        See \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.3/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\n        for a complete list of secret types (API slug).\n      required: false\n      schema:\n        type: string\n    secret-scanning-alert-resolution:\n      name: resolution\n      in: query\n      description: A comma-separated list of resolutions. Only secret scanning alerts\n        with one of these resolutions are listed. Valid resolutions are `false_positive`,\n        `wont_fix`, `revoked`, `pattern_edited`, `pattern_deleted` or `used_in_tests`.\n      required: false\n      schema:\n        type: string\n    team-slug:\n      name: team_slug\n      description: team_slug parameter\n      in: path\n      required: true\n      schema:\n        type: string\n    discussion-number:\n      name: discussion_number\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    reaction-id:\n      name: reaction_id\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    card-id:\n      name: card_id\n      description: card_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    artifact-id:\n      name: artifact_id\n      description: artifact_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    job-id:\n      name: job_id\n      description: job_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    actor:\n      name: actor\n      description: Returns someone's workflow runs. Use the login for the user who\n        created the `push` associated with the check suite or workflow run.\n      in: query\n      required: false\n      schema:\n        type: string\n    workflow-run-branch:\n      name: branch\n      description: Returns workflow runs associated with a branch. Use the name of\n        the branch of the `push`.\n      in: query\n      required: false\n      schema:\n        type: string\n    event:\n      name: event\n      description: Returns workflow run triggered by the event you specify. For example,\n        `push`, `pull_request` or `issue`. For more information, see \"[Events that\n        trigger workflows](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows).\"\n      in: query\n      required: false\n      schema:\n        type: string\n    workflow-run-status:\n      name: status\n      description: Returns workflow runs with the check run `status` or `conclusion`\n        that you specify. For example, a conclusion can be `success` or a status can\n        be `in_progress`. Only GitHub can set a status of `waiting` or `requested`.\n        For a list of the possible `status` and `conclusion` options, see \"[Create\n        a check run](https://docs.github.com/enterprise-server@3.3/rest/reference/checks#create-a-check-run).\"\n      in: query\n      required: false\n      schema:\n        type: string\n        enum:\n        - completed\n        - action_required\n        - cancelled\n        - failure\n        - neutral\n        - skipped\n        - stale\n        - success\n        - timed_out\n        - in_progress\n        - queued\n        - requested\n        - waiting\n    created:\n      name: created\n      in: query\n      required: false\n      schema:\n        type: string\n        format: date-time\n    exclude-pull-requests:\n      name: exclude_pull_requests\n      description: If `true` pull requests are omitted from the response (empty array).\n      in: query\n      required: false\n      schema:\n        type: boolean\n        default: false\n    run-id:\n      name: run_id\n      description: The id of the workflow run.\n      in: path\n      required: true\n      schema:\n        type: integer\n    attempt-number:\n      name: attempt_number\n      description: The attempt number of the workflow run.\n      in: path\n      required: true\n      schema:\n        type: integer\n    workflow-id:\n      name: workflow_id\n      in: path\n      description: The ID of the workflow. You can also pass the workflow file name\n        as a string.\n      required: true\n      schema:\n        oneOf:\n        - type: integer\n        - type: string\n    autolink-id:\n      name: autolink_id\n      description: autolink_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    branch:\n      name: branch\n      description: The name of the branch.\n      in: path\n      required: true\n      schema:\n        type: string\n      x-multi-segment: true\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-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    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    tool-name:\n      name: tool_name\n      description: The name of a code scanning tool. Only results by this tool will\n        be listed. You can specify the tool by using either `tool_name` or `tool_guid`,\n        but not both.\n      in: query\n      required: false\n      schema:\n        \"$ref\": \"#/components/schemas/code-scanning-analysis-tool-name\"\n    tool-guid:\n      name: tool_guid\n      description: The GUID of a code scanning tool. Only results by this tool will\n        be listed. Note that some code scanning tools may not include a GUID in their\n        analysis data. You can specify the tool by using either `tool_guid` or `tool_name`,\n        but not both.\n      in: query\n      required: false\n      schema:\n        \"$ref\": \"#/components/schemas/code-scanning-analysis-tool-guid\"\n    git-ref:\n      name: ref\n      description: The Git reference for the results you want to list. The `ref` for\n        a branch can be formatted either as `refs/heads/<branch name>` or simply `<branch\n        name>`. To reference a pull request use `refs/pull/<number>/merge`.\n      in: query\n      required: false\n      schema:\n        \"$ref\": \"#/components/schemas/code-scanning-ref\"\n    alert-number:\n      name: alert_number\n      in: path\n      description: The number that identifies an alert. You can find this at the end\n        of the URL for a code scanning alert within GitHub, and in the `number` field\n        in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts`\n        operation.\n      required: true\n      schema:\n        \"$ref\": \"#/components/schemas/alert-number\"\n    commit-sha:\n      name: commit_sha\n      description: commit_sha parameter\n      in: path\n      required: true\n      schema:\n        type: string\n      x-multi-segment: true\n    deployment-id:\n      name: deployment_id\n      description: deployment_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    environment-name:\n      name: environment_name\n      in: path\n      required: true\n      description: The name of the environment\n      schema:\n        type: string\n    invitation-id:\n      name: invitation_id\n      description: invitation_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\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    issue-number:\n      name: issue_number\n      description: issue_number parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    key-id:\n      name: key_id\n      description: key_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    milestone-number:\n      name: milestone_number\n      description: milestone_number parameter\n      in: path\n      required: true\n      schema:\n        type: integer\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    asset-id:\n      name: asset_id\n      description: asset_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    since-repo:\n      name: since\n      description: A repository ID. Only return repositories with an ID greater than\n        this ID.\n      in: query\n      required: false\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    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    since-user:\n      name: since\n      description: A user ID. Only return users with an ID greater than this ID.\n      in: query\n      required: false\n      schema:\n        type: integer\n  schemas:\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    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    public-key-full:\n      type: object\n      properties:\n        id:\n          type: integer\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        title:\n          type: string\n        read_only:\n          type: boolean\n        verified:\n          type: boolean\n        created_at:\n          type: string\n          format: date-time\n        last_used:\n          nullable: true\n          type: string\n          format: date-time\n      required:\n      - id\n      - key\n      - url\n      - title\n      - verified\n      - created_at\n      - read_only\n      - last_used\n      - user_id\n      - repository_id\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          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          nullable: true\n    ldap-mapping-user:\n      title: Ldap Private User\n      description: Ldap Private User\n      type: object\n      properties:\n        ldap_dn:\n          type: string\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: 41d064eb2195891e12d0413f63227ea7\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      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    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    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    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    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    nullable-simple-user:\n      title: Simple User\n      description: Simple User\n      type: object\n      properties:\n        name:\n          nullable: true\n          type: string\n        email:\n          nullable: true\n          type: string\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: 41d064eb2195891e12d0413f63227ea7\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    app-permissions:\n      title: App Permissions\n      type: object\n      description: The permissions granted to the user-to-server access token.\n      properties:\n        actions:\n          type: string\n          description: 'The level of permission to grant the access token for GitHub\n            Actions workflows, workflow runs, and artifacts. Can be one of: `read`\n            or `write`.'\n          enum:\n          - read\n          - write\n        administration:\n          type: string\n          description: 'The level of permission to grant the access token for repository\n            creation, deletion, settings, teams, and collaborators creation. Can be\n            one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        checks:\n          type: string\n          description: 'The level of permission to grant the access token for checks\n            on code. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        contents:\n          type: string\n          description: 'The level of permission to grant the access token for repository\n            contents, commits, branches, downloads, releases, and merges. Can be one\n            of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        deployments:\n          type: string\n          description: 'The level of permission to grant the access token for deployments\n            and deployment statuses. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        environments:\n          type: string\n          description: 'The level of permission to grant the access token for managing\n            repository environments. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        issues:\n          type: string\n          description: 'The level of permission to grant the access token for issues\n            and related comments, assignees, labels, and milestones. Can be one of:\n            `read` or `write`.'\n          enum:\n          - read\n          - write\n        metadata:\n          type: string\n          description: 'The level of permission to grant the access token to search\n            repositories, list collaborators, and access repository metadata. Can\n            be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        packages:\n          type: string\n          description: 'The level of permission to grant the access token for packages\n            published to GitHub Packages. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        pages:\n          type: string\n          description: 'The level of permission to grant the access token to retrieve\n            Pages statuses, configuration, and builds, as well as create new builds.\n            Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        pull_requests:\n          type: string\n          description: 'The level of permission to grant the access token for pull\n            requests and related comments, assignees, labels, milestones, and merges.\n            Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        repository_hooks:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            the post-receive hooks for a repository. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        repository_projects:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            repository projects, columns, and cards. Can be one of: `read`, `write`,\n            or `admin`.'\n          enum:\n          - read\n          - write\n          - admin\n        secret_scanning_alerts:\n          type: string\n          description: 'The level of permission to grant the access token to view\n            and manage secret scanning alerts. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        secrets:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            repository secrets. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        security_events:\n          type: string\n          description: 'The level of permission to grant the access token to view\n            and manage security events like code scanning alerts. Can be one of: `read`\n            or `write`.'\n          enum:\n          - read\n          - write\n        single_file:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            just a single file. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        statuses:\n          type: string\n          description: 'The level of permission to grant the access token for commit\n            statuses. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        vulnerability_alerts:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            Dependabot alerts. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        workflows:\n          type: string\n          description: 'The level of permission to grant the access token to update\n            GitHub Actions workflow files. Can be one of: `write`.'\n          enum:\n          - write\n        members:\n          type: string\n          description: 'The level of permission to grant the access token for organization\n            teams and members. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        organization_administration:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            access to an organization. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        organization_hooks:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            the post-receive hooks for an organization. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        organization_plan:\n          type: string\n          description: 'The level of permission to grant the access token for viewing\n            an organization''s plan. Can be one of: `read`.'\n          enum:\n          - read\n        organization_projects:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            organization projects and projects beta (where available). Can be one\n            of: `read`, `write`, or `admin`.'\n          enum:\n          - read\n          - write\n          - admin\n        organization_packages:\n          type: string\n          description: 'The level of permission to grant the access token for organization\n            packages published to GitHub Packages. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        organization_secrets:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            organization secrets. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        organization_self_hosted_runners:\n          type: string\n          description: 'The level of permission to grant the access token to view\n            and manage GitHub Actions self-hosted runners available to an organization.\n            Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        organization_user_blocking:\n          type: string\n          description: 'The level of permission to grant the access token to view\n            and manage users blocked by the organization. Can be one of: `read` or\n            `write`.'\n          enum:\n          - read\n          - write\n        team_discussions:\n          type: string\n          description: 'The level of permission to grant the access token to manage\n            team discussions and related comments. Can be one of: `read` or `write`.'\n          enum:\n          - read\n          - write\n        content_references:\n          type: string\n          description: 'The level of permission to grant the access token for notification\n            of content references and creation content attachments. Can be one of:\n            `read` or `write`.'\n          enum:\n          - read\n          - write\n      example:\n        contents: read\n        issues: read\n        deployments: write\n        single_file: read\n    simple-user:\n      title: Simple User\n      description: Simple User\n      type: object\n      properties:\n        name:\n          nullable: true\n          type: string\n        email:\n          nullable: true\n          type: string\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: 41d064eb2195891e12d0413f63227ea7\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-scoped-installation:\n      title: Scoped Installation\n      type: object\n      properties:\n        permissions:\n          \"$ref\": \"#/components/schemas/app-permissions\"\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.yaml\n          nullable: true\n        has_multiple_single_files:\n          type: boolean\n          example: true\n        single_file_paths:\n          type: array\n          items:\n            type: string\n          example:\n          - config.yml\n          - \".github/issue_TEMPLATE.md\"\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      nullable: true\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        url:\n          type: string\n          format: uri\n        scopes:\n          description: A list of scopes that this authorization is in.\n          type: array\n          items:\n            type: string\n          nullable: true\n        token:\n          type: string\n        token_last_eight:\n          type: string\n          nullable: true\n        hashed_token:\n          type: string\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          nullable: true\n        note_url:\n          type: string\n          format: uri\n          nullable: true\n        updated_at:\n          type: string\n          format: date-time\n        created_at:\n          type: string\n          format: date-time\n        fingerprint:\n          type: string\n          nullable: true\n        user:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        installation:\n          \"$ref\": \"#/components/schemas/nullable-scoped-installation\"\n        expires_at:\n          type: string\n          format: date-time\n          nullable: true\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      - expires_at\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          \"$ref\": \"#/components/schemas/nullable-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: The description of the app.\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          nullable: true\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    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        url:\n          type: string\n        status:\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    webhook-config-url:\n      type: string\n      description: The URL to which the payloads will be delivered.\n      example: https://example.com/webhook\n      format: uri\n    webhook-config-content-type:\n      type: string\n      description: The media type used to serialize the payloads. Supported values\n        include `json` and `form`. The default is `form`.\n      example: '\"json\"'\n    webhook-config-secret:\n      type: string\n      description: If provided, the `secret` will be used as the `key` to generate\n        the HMAC hex digest value for [delivery signature headers](https://docs.github.com/enterprise-server@3.3/webhooks/event-payloads/#delivery-headers).\n      example: '\"********\"'\n    webhook-config-insecure-ssl:\n      oneOf:\n      - type: string\n        description: Determines whether the SSL certificate of the host for `url`\n          will be verified when delivering payloads. Supported values include `0`\n          (verification is performed) and `1` (verification is not performed). The\n          default is `0`. **We strongly recommend not setting this to `1` as you are\n          subject to man-in-the-middle and other attacks.**\n        example: '\"0\"'\n      - type: number\n    webhook-config:\n      title: Webhook Configuration\n      description: Configuration object of the webhook\n      type: object\n      properties:\n        url:\n          \"$ref\": \"#/components/schemas/webhook-config-url\"\n        content_type:\n          \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n        secret:\n          \"$ref\": \"#/components/schemas/webhook-config-secret\"\n        insecure_ssl:\n          \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\n    hook-delivery-item:\n      title: Simple webhook delivery\n      description: Delivery made by a webhook, without request and response information.\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the webhook delivery.\n          type: integer\n          example: 42\n        guid:\n          description: Unique identifier for the event (shared with all deliveries\n            for all webhooks that subscribe to this event).\n          type: string\n          example: 58474f00-b361-11eb-836d-0e4f3503ccbe\n        delivered_at:\n          description: Time when the webhook delivery occurred.\n          type: string\n          format: date-time\n          example: '2021-05-12T20:33:44Z'\n        redelivery:\n          description: Whether the webhook delivery is a redelivery.\n          type: boolean\n          example: false\n        duration:\n          description: Time spent delivering.\n          type: number\n          example: 0.03\n        status:\n          description: Describes the response returned after attempting the delivery.\n          type: string\n          example: failed to connect\n        status_code:\n          description: Status code received when delivery was made.\n          type: integer\n          example: 502\n        event:\n          description: The event that triggered the delivery.\n          type: string\n          example: issues\n        action:\n          description: The type of activity for the event that triggered the delivery.\n          type: string\n          example: opened\n          nullable: true\n        installation_id:\n          description: The id of the GitHub App installation associated with this\n            event.\n          type: integer\n          example: 123\n          nullable: true\n        repository_id:\n          description: The id of the repository associated with this event.\n          type: integer\n          example: 123\n          nullable: true\n      required:\n      - id\n      - guid\n      - delivered_at\n      - redelivery\n      - duration\n      - status\n      - status_code\n      - event\n      - action\n      - installation_id\n      - repository_id\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    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    hook-delivery:\n      title: Webhook delivery\n      description: Delivery made by a webhook.\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the delivery.\n          type: integer\n          example: 42\n        guid:\n          description: Unique identifier for the event (shared with all deliveries\n            for all webhooks that subscribe to this event).\n          type: string\n          example: 58474f00-b361-11eb-836d-0e4f3503ccbe\n        delivered_at:\n          description: Time when the delivery was delivered.\n          type: string\n          format: date-time\n          example: '2021-05-12T20:33:44Z'\n        redelivery:\n          description: Whether the delivery is a redelivery.\n          type: boolean\n          example: false\n        duration:\n          description: Time spent delivering.\n          type: number\n          example: 0.03\n        status:\n          description: Description of the status of the attempted delivery\n          type: string\n          example: failed to connect\n        status_code:\n          description: Status code received when delivery was made.\n          type: integer\n          example: 502\n        event:\n          description: The event that triggered the delivery.\n          type: string\n          example: issues\n        action:\n          description: The type of activity for the event that triggered the delivery.\n          type: string\n          example: opened\n          nullable: true\n        installation_id:\n          description: The id of the GitHub App installation associated with this\n            event.\n          type: integer\n          example: 123\n          nullable: true\n        repository_id:\n          description: The id of the repository associated with this event.\n          type: integer\n          example: 123\n          nullable: true\n        url:\n          description: The URL target of the delivery.\n          type: string\n          example: https://www.example.com\n        request:\n          type: object\n          properties:\n            headers:\n              description: The request headers sent with the webhook delivery.\n              type: object\n              nullable: true\n              additionalProperties: true\n            payload:\n              description: The webhook payload.\n              type: object\n              nullable: true\n              additionalProperties: true\n          required:\n          - headers\n          - payload\n        response:\n          type: object\n          properties:\n            headers:\n              description: The response headers received when the delivery was made.\n              type: object\n              nullable: true\n              additionalProperties: true\n            payload:\n              description: The response payload received.\n              type: string\n              nullable: true\n              additionalProperties: true\n          required:\n          - headers\n          - payload\n      required:\n      - id\n      - guid\n      - delivered_at\n      - redelivery\n      - duration\n      - status\n      - status_code\n      - event\n      - action\n      - installation_id\n      - repository_id\n      - request\n      - response\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          \"$ref\": \"#/components/schemas/app-permissions\"\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.yaml\n          nullable: true\n        has_multiple_single_files:\n          type: boolean\n          example: true\n        single_file_paths:\n          type: array\n          items:\n            type: string\n          example:\n          - config.yml\n          - \".github/issue_TEMPLATE.md\"\n        app_slug:\n          type: string\n          example: github-actions\n        suspended_by:\n          \"$ref\": \"#/components/schemas/nullable-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      - suspended_by\n      - suspended_at\n    nullable-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      nullable: true\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          \"$ref\": \"#/components/schemas/nullable-license-simple\"\n        organization:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\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          \"$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          nullable: true\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              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                maintain:\n                  type: boolean\n                push:\n                  type: boolean\n                triage:\n                  type: boolean\n                pull:\n                  type: boolean\n            allow_rebase_merge:\n              type: boolean\n            temp_clone_token:\n              type: string\n            allow_squash_merge:\n              type: boolean\n            allow_auto_merge:\n              type: boolean\n            delete_branch_on_merge:\n              type: boolean\n            allow_update_branch:\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        allow_auto_merge:\n          description: Whether to allow Auto-merge to be used on pull requests.\n          default: false\n          type: boolean\n          example: false\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        allow_forking:\n          description: Whether to allow forking this repo\n          type: boolean\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    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          \"$ref\": \"#/components/schemas/app-permissions\"\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        has_multiple_single_files:\n          type: boolean\n          example: true\n        single_file_paths:\n          type: array\n          items:\n            type: string\n          example:\n          - config.yml\n          - \".github/issue_TEMPLATE.md\"\n      required:\n      - token\n      - expires_at\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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n      required:\n      - app\n      - id\n      - scopes\n      - url\n      - created_at\n      - updated_at\n    nullable-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        url:\n          type: string\n          format: uri\n        scopes:\n          description: A list of scopes that this authorization is in.\n          type: array\n          items:\n            type: string\n          nullable: true\n        token:\n          type: string\n        token_last_eight:\n          type: string\n          nullable: true\n        hashed_token:\n          type: string\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          nullable: true\n        note_url:\n          type: string\n          format: uri\n          nullable: true\n        updated_at:\n          type: string\n          format: date-time\n        created_at:\n          type: string\n          format: date-time\n        fingerprint:\n          type: string\n          nullable: true\n        user:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        installation:\n          \"$ref\": \"#/components/schemas/nullable-scoped-installation\"\n        expires_at:\n          type: string\n          format: date-time\n          nullable: true\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      - expires_at\n      nullable: true\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    announcement-message:\n      type: string\n      description: The announcement text in GitHub Flavored Markdown. For more information\n        about GitHub Flavored Markdown, see \"[Basic writing and formatting syntax](https://docs.github.com/enterprise-server@3.3/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax).\"\n      example: Very **important** announcement about _nothing_.\n    announcement-expiration:\n      type: string\n      format: date-time\n      description: 'The time at which the announcement expires. This is a timestamp\n        in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.\n        To set an announcement that never expires, omit this parameter, set it to\n        `null`, or set it to an empty string.'\n      example: '\"2021-01-01T00:00:00.000-07:00\"'\n      nullable: true\n    announcement:\n      title: Enterprise Announcement\n      description: Enterprise global announcement\n      type: object\n      properties:\n        announcement:\n          \"$ref\": \"#/components/schemas/announcement-message\"\n        expires_at:\n          \"$ref\": \"#/components/schemas/announcement-expiration\"\n      required:\n      - announcement\n    license-info:\n      type: object\n      properties:\n        seats:\n          oneOf:\n          - type: string\n          - type: integer\n        seats_used:\n          type: integer\n        seats_available:\n          oneOf:\n          - type: string\n          - type: integer\n        kind:\n          type: string\n        days_until_expiration:\n          type: integer\n        expire_at:\n          type: string\n    enterprise-repository-overview:\n      title: Repository Enterprise Stats\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      required:\n      - total_repos\n      - root_repos\n      - fork_repos\n      - org_repos\n      - total_pushes\n      - total_wikis\n    enterprise-hook-overview:\n      title: Hooks Enterprise Stats\n      type: object\n      properties:\n        total_hooks:\n          type: integer\n        active_hooks:\n          type: integer\n        inactive_hooks:\n          type: integer\n      required:\n      - total_hooks\n      - active_hooks\n      - inactive_hooks\n    enterprise-page-overview:\n      title: Enterprise Pages Stats\n      type: object\n      properties:\n        total_pages:\n          type: integer\n      required:\n      - total_pages\n    enterprise-organization-overview:\n      title: Enterprise Organization Stats\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      required:\n      - total_orgs\n      - disabled_orgs\n      - total_teams\n      - total_team_members\n    enterprise-user-overview:\n      title: Enterprise User Stats\n      type: object\n      properties:\n        total_users:\n          type: integer\n        admin_users:\n          type: integer\n        suspended_users:\n          type: integer\n      required:\n      - total_users\n      - admin_users\n      - suspended_users\n    enterprise-pull-request-overview:\n      title: Enterprise Pull Request Stats\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      required:\n      - total_pulls\n      - merged_pulls\n      - mergeable_pulls\n      - unmergeable_pulls\n    enterprise-issue-overview:\n      title: Enterprise Issue Stats\n      type: object\n      properties:\n        total_issues:\n          type: integer\n        open_issues:\n          type: integer\n        closed_issues:\n          type: integer\n      required:\n      - total_issues\n      - open_issues\n      - closed_issues\n    enterprise-milestone-overview:\n      title: Enterprise Milestone Stats\n      type: object\n      properties:\n        total_milestones:\n          type: integer\n        open_milestones:\n          type: integer\n        closed_milestones:\n          type: integer\n      required:\n      - total_milestones\n      - open_milestones\n      - closed_milestones\n    enterprise-gist-overview:\n      title: Enterprise Gist Stats\n      type: object\n      properties:\n        total_gists:\n          type: integer\n        private_gists:\n          type: integer\n        public_gists:\n          type: integer\n      required:\n      - total_gists\n      - private_gists\n      - public_gists\n    enterprise-comment-overview:\n      title: Enterprise Comment Stats\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      required:\n      - total_commit_comments\n      - total_gist_comments\n      - total_issue_comments\n      - total_pull_request_comments\n    enterprise-overview:\n      type: object\n      properties:\n        repos:\n          \"$ref\": \"#/components/schemas/enterprise-repository-overview\"\n        hooks:\n          \"$ref\": \"#/components/schemas/enterprise-hook-overview\"\n        pages:\n          \"$ref\": \"#/components/schemas/enterprise-page-overview\"\n        orgs:\n          \"$ref\": \"#/components/schemas/enterprise-organization-overview\"\n        users:\n          \"$ref\": \"#/components/schemas/enterprise-user-overview\"\n        pulls:\n          \"$ref\": \"#/components/schemas/enterprise-pull-request-overview\"\n        issues:\n          \"$ref\": \"#/components/schemas/enterprise-issue-overview\"\n        milestones:\n          \"$ref\": \"#/components/schemas/enterprise-milestone-overview\"\n        gists:\n          \"$ref\": \"#/components/schemas/enterprise-gist-overview\"\n        comments:\n          \"$ref\": \"#/components/schemas/enterprise-comment-overview\"\n    enabled-organizations:\n      type: string\n      description: 'The policy that controls the organizations in the enterprise that\n        are allowed to run GitHub Actions. Can be one of: `all`, `none`, or `selected`.'\n      enum:\n      - all\n      - none\n      - selected\n    allowed-actions:\n      type: string\n      description: 'The permissions policy that controls the actions that are allowed\n        to run. Can be one of: `all`, `local_only`, or `selected`.'\n      enum:\n      - all\n      - local_only\n      - selected\n    selected-actions-url:\n      type: string\n      description: The API URL to use to get or set the actions that are allowed to\n        run, when `allowed_actions` is set to `selected`.\n    actions-enterprise-permissions:\n      type: object\n      properties:\n        enabled_organizations:\n          \"$ref\": \"#/components/schemas/enabled-organizations\"\n        selected_organizations_url:\n          type: string\n          description: The API URL to use to get or set the selected organizations\n            that are allowed to run GitHub Actions, when `enabled_organizations` is\n            set to `selected`.\n        allowed_actions:\n          \"$ref\": \"#/components/schemas/allowed-actions\"\n        selected_actions_url:\n          \"$ref\": \"#/components/schemas/selected-actions-url\"\n      required:\n      - enabled_organizations\n    selected-actions:\n      type: object\n      properties:\n        github_owned_allowed:\n          type: boolean\n          description: Whether GitHub-owned actions are allowed. For example, this\n            includes the actions in the `actions` organization.\n        patterns_allowed:\n          type: array\n          description: Specifies a list of string-matching patterns to allow specific\n            action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`,\n            `monalisa/octocat@v2`, `monalisa/*`.\"\n          items:\n            type: string\n      required:\n      - github_owned_allowed\n      - patterns_allowed\n    runner-groups-enterprise:\n      type: object\n      properties:\n        id:\n          type: number\n        name:\n          type: string\n        visibility:\n          type: string\n        default:\n          type: boolean\n        selected_organizations_url:\n          type: string\n        runners_url:\n          type: string\n        allows_public_repositories:\n          type: boolean\n      required:\n      - id\n      - name\n      - visibility\n      - allows_public_repositories\n      - default\n      - runners_url\n    runner-label:\n      title: Self hosted runner label\n      description: A label for a self hosted runner\n      type: object\n      properties:\n        id:\n          type: integer\n          description: Unique identifier of the label.\n        name:\n          type: string\n          description: Name of the label.\n        type:\n          type: string\n          description: The type of label. Read-only labels are applied automatically\n            when the runner is configured.\n          enum:\n          - read-only\n          - custom\n      required:\n      - name\n    runner:\n      title: Self hosted runners\n      description: A self hosted runner\n      type: object\n      properties:\n        id:\n          description: The id of the runner.\n          type: integer\n          example: 5\n        name:\n          description: The name of the runner.\n          type: string\n          example: iMac\n        os:\n          description: The Operating System of the runner.\n          type: string\n          example: macos\n        status:\n          description: The status of the runner.\n          type: string\n          example: online\n        busy:\n          type: boolean\n        labels:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/runner-label\"\n      required:\n      - id\n      - name\n      - os\n      - status\n      - busy\n      - labels\n    runner-application:\n      title: Runner Application\n      description: Runner Application\n      type: object\n      properties:\n        os:\n          type: string\n        architecture:\n          type: string\n        download_url:\n          type: string\n        filename:\n          type: string\n        temp_download_token:\n          description: A short lived bearer token used to download the runner, if\n            needed.\n          type: string\n        sha256_checksum:\n          type: string\n      required:\n      - os\n      - architecture\n      - download_url\n      - filename\n    authentication-token:\n      title: Authentication Token\n      description: Authentication Token\n      type: object\n      properties:\n        token:\n          description: The token used for authentication\n          type: string\n          example: v1.1f699f1069f60xxx\n        expires_at:\n          description: The time this token expires\n          type: string\n          format: date-time\n          example: '2016-07-11T22:14:10Z'\n        permissions:\n          type: object\n          example:\n            issues: read\n            deployments: write\n        repositories:\n          description: The repositories this token has access to\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/repository\"\n        single_file:\n          type: string\n          example: config.yaml\n          nullable: true\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      required:\n      - token\n      - expires_at\n    audit-log-event:\n      type: object\n      properties:\n        \"@timestamp\":\n          type: integer\n          description: The time the audit log event occurred, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n        action:\n          type: string\n          description: The name of the action that was performed, for example `user.login`\n            or `repo.create`.\n        active:\n          type: boolean\n        active_was:\n          type: boolean\n        actor:\n          type: string\n          description: The actor who performed the action.\n        actor_id:\n          type: integer\n          description: The id of the actor who performed the action.\n        actor_location:\n          type: object\n          properties:\n            country_name:\n              type: string\n        data:\n          type: object\n          additionalProperties: true\n        org_id:\n          type: integer\n        blocked_user:\n          type: string\n          description: The username of the account being blocked.\n        business:\n          type: string\n        config:\n          type: array\n          items:\n            type: object\n        config_was:\n          type: array\n          items:\n            type: object\n        content_type:\n          type: string\n        created_at:\n          type: integer\n          description: The time the audit log event was recorded, given as a [Unix\n            timestamp](http://en.wikipedia.org/wiki/Unix_time).\n        deploy_key_fingerprint:\n          type: string\n        _document_id:\n          type: string\n          description: A unique identifier for an audit event.\n        emoji:\n          type: string\n        events:\n          type: array\n          items:\n            type: object\n        events_were:\n          type: array\n          items:\n            type: object\n        explanation:\n          type: string\n        fingerprint:\n          type: string\n        hook_id:\n          type: integer\n        limited_availability:\n          type: boolean\n        message:\n          type: string\n        name:\n          type: string\n        old_user:\n          type: string\n        openssh_public_key:\n          type: string\n        org:\n          type: string\n        previous_visibility:\n          type: string\n        read_only:\n          type: boolean\n        repo:\n          type: string\n          description: The name of the repository.\n        repository:\n          type: string\n          description: The name of the repository.\n        repository_public:\n          type: boolean\n        target_login:\n          type: string\n        team:\n          type: string\n        transport_protocol:\n          type: integer\n          description: The type of protocol (for example, HTTP or SSH) used to transfer\n            Git data.\n        transport_protocol_name:\n          type: string\n          description: A human readable name for the protocol (for example, HTTP or\n            SSH) used to transfer Git data.\n        user:\n          type: string\n          description: The user that was affected by the action performed (if available).\n        visibility:\n          type: string\n          description: The repository visibility, for example `public` or `private`.\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    nullable-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          \"$ref\": \"#/components/schemas/nullable-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      nullable: true\n    nullable-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          \"$ref\": \"#/components/schemas/nullable-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: The description of the app.\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          nullable: true\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      nullable: true\n    author_association:\n      title: author_association\n      type: string\n      example: OWNER\n      description: How the author is associated with the repository.\n      enum:\n      - COLLABORATOR\n      - CONTRIBUTOR\n      - FIRST_TIMER\n      - FIRST_TIME_CONTRIBUTOR\n      - MANNEQUIN\n      - MEMBER\n      - NONE\n      - OWNER\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    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          nullable: true\n        user:\n          \"$ref\": \"#/components/schemas/nullable-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                  format: int64\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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        assignees:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        milestone:\n          \"$ref\": \"#/components/schemas/nullable-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        draft:\n          type: boolean\n        closed_by:\n          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/nullable-integration\"\n        author_association:\n          \"$ref\": \"#/components/schemas/author_association\"\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    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          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/author_association\"\n        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-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\"\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        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    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: https://github.com/octocat-org\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    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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        comments_url:\n          type: string\n          format: uri\n        owner:\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    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: 1\n        total_private_repos:\n          type: integer\n          example: 2\n        owned_private_repos:\n          type: integer\n          example: 2\n        disk_usage:\n          type: integer\n          example: 1\n        collaborators:\n          type: integer\n          example: 3\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    gist-history:\n      title: Gist History\n      description: Gist History\n      type: object\n      properties:\n        user:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        version:\n          type: string\n        committed_at:\n          type: string\n          format: date-time\n        change_status:\n          type: object\n          properties:\n            total:\n              type: integer\n            additions:\n              type: integer\n            deletions:\n              type: integer\n        url:\n          type: string\n          format: uri\n    gist-simple:\n      title: Gist Simple\n      description: Gist Simple\n      type: object\n      properties:\n        forks:\n          deprecated: true\n          nullable: true\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: string\n              url:\n                type: string\n                format: uri\n              user:\n                \"$ref\": \"#/components/schemas/public-user\"\n              created_at:\n                type: string\n                format: date-time\n              updated_at:\n                type: string\n                format: date-time\n        history:\n          deprecated: true\n          nullable: true\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/gist-history\"\n        fork_of:\n          nullable: true\n          title: Gist\n          description: 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              \"$ref\": \"#/components/schemas/nullable-simple-user\"\n            comments_url:\n              type: string\n              format: uri\n            owner:\n              \"$ref\": \"#/components/schemas/nullable-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        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-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          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/author_association\"\n      required:\n      - url\n      - id\n      - node_id\n      - user\n      - body\n      - author_association\n      - created_at\n      - updated_at\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          \"$ref\": \"#/components/schemas/nullable-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    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    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    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    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        packages:\n          type: array\n          items:\n            type: string\n          example:\n          - 13.65.0.0/16\n          - 157.55.204.33/32\n          - 2a01:111:f403:f90c::/62\n        dependabot:\n          type: array\n          items:\n            type: string\n          example:\n          - 192.168.7.15/32\n          - 192.168.7.16/32\n        installed_version:\n          type: string\n          example: 3.3.0\n      required:\n      - verifiable_password_authentication\n    nullable-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          \"$ref\": \"#/components/schemas/nullable-license-simple\"\n        organization:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\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          \"$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          nullable: true\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              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                maintain:\n                  type: boolean\n                push:\n                  type: boolean\n                triage:\n                  type: boolean\n                pull:\n                  type: boolean\n            allow_rebase_merge:\n              type: boolean\n            temp_clone_token:\n              type: string\n            allow_squash_merge:\n              type: boolean\n            allow_auto_merge:\n              type: boolean\n            delete_branch_on_merge:\n              type: boolean\n            allow_update_branch:\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        allow_auto_merge:\n          description: Whether to allow Auto-merge to be used on pull requests.\n          default: false\n          type: boolean\n          example: false\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        allow_forking:\n          description: Whether to allow forking this repo\n          type: boolean\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      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          \"$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            maintain:\n              type: boolean\n            push:\n              type: boolean\n            triage:\n              type: boolean\n            pull:\n              type: boolean\n        template_repository:\n          \"$ref\": \"#/components/schemas/nullable-repository\"\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        code_of_conduct:\n          \"$ref\": \"#/components/schemas/code-of-conduct\"\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        allow_forking:\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    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          required:\n          - title\n          - url\n          - latest_comment_url\n          - type\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      required:\n      - id\n      - unread\n      - reason\n      - updated_at\n      - last_read_at\n      - subject\n      - repository\n      - url\n      - subscription_url\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    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        members_can_create_pages:\n          type: boolean\n          example: true\n        members_can_create_public_pages:\n          type: boolean\n          example: true\n        members_can_create_private_pages:\n          type: boolean\n          example: true\n        members_can_fork_private_repositories:\n          type: boolean\n          example: false\n          nullable: 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    enabled-repositories:\n      type: string\n      description: 'The policy that controls the repositories in the organization\n        that are allowed to run GitHub Actions. Can be one of: `all`, `none`, or `selected`.'\n      enum:\n      - all\n      - none\n      - selected\n    actions-organization-permissions:\n      type: object\n      properties:\n        enabled_repositories:\n          \"$ref\": \"#/components/schemas/enabled-repositories\"\n        selected_repositories_url:\n          type: string\n          description: The API URL to use to get or set the selected repositories\n            that are allowed to run GitHub Actions, when `enabled_repositories` is\n            set to `selected`.\n        allowed_actions:\n          \"$ref\": \"#/components/schemas/allowed-actions\"\n        selected_actions_url:\n          \"$ref\": \"#/components/schemas/selected-actions-url\"\n      required:\n      - enabled_repositories\n    runner-groups-org:\n      type: object\n      properties:\n        id:\n          type: number\n        name:\n          type: string\n        visibility:\n          type: string\n        default:\n          type: boolean\n        selected_repositories_url:\n          description: Link to the selected repositories resource for this runner\n            group. Not present unless visibility was set to `selected`\n          type: string\n        runners_url:\n          type: string\n        inherited:\n          type: boolean\n        inherited_allows_public_repositories:\n          type: boolean\n        allows_public_repositories:\n          type: boolean\n      required:\n      - id\n      - name\n      - visibility\n      - default\n      - runners_url\n      - inherited\n      - allows_public_repositories\n    organization-actions-secret:\n      title: Actions Secret for an Organization\n      description: Secrets for GitHub Actions for an organization.\n      type: object\n      properties:\n        name:\n          description: The name of the secret.\n          example: SECRET_TOKEN\n          type: string\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        visibility:\n          description: Visibility of a secret\n          enum:\n          - all\n          - private\n          - selected\n          type: string\n        selected_repositories_url:\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/org/secrets/my_secret/repositories\n      required:\n      - name\n      - created_at\n      - updated_at\n      - visibility\n    actions-public-key:\n      title: ActionsPublicKey\n      description: The public key used for setting Actions Secrets.\n      type: object\n      properties:\n        key_id:\n          description: The identifier for the key.\n          type: string\n          example: '1234567'\n        key:\n          description: The Base64 encoded public key.\n          type: string\n          example: hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs=\n        id:\n          type: integer\n          example: 2\n        url:\n          type: string\n          example: https://api.github.com/user/keys/2\n        title:\n          type: string\n          example: ssh-rsa AAAAB3NzaC1yc2EAAA\n        created_at:\n          type: string\n          example: '2011-01-26T19:01:12Z'\n      required:\n      - key_id\n      - key\n    empty-object:\n      title: Empty Object\n      description: An object without any properties.\n      type: object\n      properties: {}\n      additionalProperties: false\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        deliveries_url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/octocat/hooks/1/deliveries\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    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          description: The state of the member in the organization. The `pending`\n            state indicates the user has not yet accepted an invitation.\n          example: active\n          enum:\n          - active\n          - pending\n        role:\n          type: string\n          description: The user's membership type in the organization.\n          example: admin\n          enum:\n          - admin\n          - member\n          - billing_manager\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          \"$ref\": \"#/components/schemas/nullable-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-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    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          \"$ref\": \"#/components/schemas/nullable-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. Only present if owner is an organization.\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. Only present\n            if owner is an organization.\n          type: boolean\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    alert-number:\n      type: integer\n      description: The security alert number.\n      readOnly: true\n    alert-created-at:\n      type: string\n      description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.'\n      format: date-time\n      readOnly: true\n    alert-url:\n      type: string\n      description: The REST API URL of the alert resource.\n      format: uri\n      readOnly: true\n    alert-html-url:\n      type: string\n      description: The GitHub URL of the alert resource.\n      format: uri\n      readOnly: true\n    secret-scanning-alert-state:\n      description: Sets the state of the secret scanning alert. Can be either `open`\n        or `resolved`. You must provide `resolution` when you set the state to `resolved`.\n      type: string\n      enum:\n      - open\n      - resolved\n    secret-scanning-alert-resolution:\n      type: string\n      description: \"**Required when the `state` is `resolved`.** The reason for resolving\n        the alert. Can be one of `false_positive`, `wont_fix`, `revoked`, or `used_in_tests`.\"\n      nullable: true\n      enum:\n      -\n      - false_positive\n      - wont_fix\n      - revoked\n      - used_in_tests\n    organization-secret-scanning-alert:\n      type: object\n      properties:\n        number:\n          \"$ref\": \"#/components/schemas/alert-number\"\n        created_at:\n          \"$ref\": \"#/components/schemas/alert-created-at\"\n        url:\n          \"$ref\": \"#/components/schemas/alert-url\"\n        html_url:\n          \"$ref\": \"#/components/schemas/alert-html-url\"\n        locations_url:\n          type: string\n          format: uri\n          description: The REST API URL of the code locations for this alert.\n        state:\n          \"$ref\": \"#/components/schemas/secret-scanning-alert-state\"\n        resolution:\n          \"$ref\": \"#/components/schemas/secret-scanning-alert-resolution\"\n        resolved_at:\n          type: string\n          format: date-time\n          description: 'The time that the alert was resolved in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.'\n          nullable: true\n        resolved_by:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        secret_type:\n          type: string\n          description: The type of secret that secret scanning detected.\n        secret:\n          type: string\n          description: The secret that was detected.\n        repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n    nullable-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        permissions:\n          type: object\n          properties:\n            pull:\n              type: boolean\n            triage:\n              type: boolean\n            push:\n              type: boolean\n            maintain:\n              type: boolean\n            admin:\n              type: boolean\n          required:\n          - pull\n          - triage\n          - push\n          - maintain\n          - admin\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          \"$ref\": \"#/components/schemas/nullable-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      - parent\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          \"$ref\": \"#/components/schemas/nullable-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-full\"\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-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          \"$ref\": \"#/components/schemas/nullable-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-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          \"$ref\": \"#/components/schemas/nullable-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    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          \"$ref\": \"#/components/schemas/nullable-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    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          description: The state of the user's membership in the team.\n          type: string\n          enum:\n          - active\n          - pending\n      required:\n      - role\n      - state\n      - url\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          description: The organization permission for this project. Only present\n            when owner is an organization.\n          type: string\n        private:\n          description: Whether the project is private or not. Only present when owner\n            is an organization.\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          required:\n          - read\n          - write\n          - admin\n      required:\n      - owner_url\n      - url\n      - html_url\n      - columns_url\n      - id\n      - node_id\n      - name\n      - body\n      - number\n      - state\n      - creator\n      - created_at\n      - updated_at\n      - permissions\n    team-repository:\n      title: Team Repository\n      description: A team's access to a 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          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/nullable-repository\"\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        allow_auto_merge:\n          description: Whether to allow Auto-merge to be used on pull requests.\n          default: false\n          type: boolean\n          example: false\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        allow_forking:\n          description: Whether to allow forking this repo\n          default: false\n          type: boolean\n          example: false\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      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    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          \"$ref\": \"#/components/schemas/nullable-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_name:\n          type: string\n        project_id:\n          type: string\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    project-collaborator-permission:\n      title: Project Collaborator Permission\n      description: Project Collaborator Permission\n      type: object\n      properties:\n        permission:\n          type: string\n        user:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n      required:\n      - permission\n      - user\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        used:\n          type: integer\n      required:\n      - limit\n      - remaining\n      - reset\n      - used\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            code_scanning_upload:\n              \"$ref\": \"#/components/schemas/rate-limit\"\n            actions_runner_registration:\n              \"$ref\": \"#/components/schemas/rate-limit\"\n            scim:\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    code-of-conduct-simple:\n      title: Code Of Conduct Simple\n      description: Code of Conduct Simple\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/github/docs/community/code_of_conduct\n        key:\n          type: string\n          example: citizen_code_of_conduct\n        name:\n          type: string\n          example: Citizen Code of Conduct\n        html_url:\n          type: string\n          nullable: true\n          format: uri\n          example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md\n      required:\n      - url\n      - key\n      - name\n      - html_url\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          \"$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            maintain:\n              type: boolean\n            push:\n              type: boolean\n            triage:\n              type: boolean\n            pull:\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          \"$ref\": \"#/components/schemas/nullable-repository\"\n        temp_clone_token:\n          type: string\n          nullable: true\n        allow_squash_merge:\n          type: boolean\n          example: true\n        allow_auto_merge:\n          type: boolean\n          example: false\n        delete_branch_on_merge:\n          type: boolean\n          example: false\n        allow_merge_commit:\n          type: boolean\n          example: true\n        allow_forking:\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          \"$ref\": \"#/components/schemas/nullable-license-simple\"\n        organization:\n          \"$ref\": \"#/components/schemas/nullable-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        code_of_conduct:\n          \"$ref\": \"#/components/schemas/code-of-conduct-simple\"\n        security_and_analysis:\n          nullable: true\n          type: object\n          properties:\n            advanced_security:\n              type: object\n              properties:\n                status:\n                  type: string\n                  enum:\n                  - enabled\n                  - disabled\n            secret_scanning:\n              type: object\n              properties:\n                status:\n                  type: string\n                  enum:\n                  - enabled\n                  - disabled\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    artifact:\n      title: Artifact\n      description: An artifact\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 5\n        node_id:\n          type: string\n          example: MDEwOkNoZWNrU3VpdGU1\n        name:\n          description: The name of the artifact.\n          type: string\n          example: AdventureWorks.Framework\n        size_in_bytes:\n          description: The size in bytes of the artifact.\n          type: integer\n          example: 12345\n        url:\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/artifacts/5\n        archive_download_url:\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/artifacts/5/zip\n        expired:\n          description: Whether or not the artifact has expired.\n          type: boolean\n        created_at:\n          type: string\n          format: date-time\n          nullable: true\n        expires_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      required:\n      - id\n      - node_id\n      - name\n      - size_in_bytes\n      - url\n      - archive_download_url\n      - expired\n      - created_at\n      - expires_at\n      - updated_at\n    job:\n      title: Job\n      description: Information of a job execution in a workflow run\n      type: object\n      properties:\n        id:\n          description: The id of the job.\n          example: 21\n          type: integer\n        run_id:\n          description: The id of the associated workflow run.\n          example: 5\n          type: integer\n        run_url:\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/runs/5\n        run_attempt:\n          type: integer\n          description: Attempt number of the associated workflow run, 1 for first\n            attempt and higher if the workflow was re-run.\n          example: 1\n        node_id:\n          type: string\n          example: MDg6Q2hlY2tSdW40\n        head_sha:\n          description: The SHA of the commit that is being run.\n          example: '009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d'\n          type: string\n        url:\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/jobs/21\n        html_url:\n          type: string\n          example: https://github.com/github/hello-world/runs/4\n          nullable: true\n        status:\n          description: The phase of the lifecycle that the job is currently in.\n          example: queued\n          type: string\n          enum:\n          - queued\n          - in_progress\n          - completed\n        conclusion:\n          description: The outcome of the job.\n          example: success\n          type: string\n          nullable: true\n        started_at:\n          description: The time that the job started, in ISO 8601 format.\n          example: '2019-08-08T08:00:00-07:00'\n          format: date-time\n          type: string\n        completed_at:\n          description: The time that the job finished, in ISO 8601 format.\n          example: '2019-08-08T08:00:00-07:00'\n          format: date-time\n          type: string\n          nullable: true\n        name:\n          description: The name of the job.\n          example: test-coverage\n          type: string\n        steps:\n          description: Steps in this job.\n          type: array\n          items:\n            type: object\n            required:\n            - name\n            - status\n            - conclusion\n            - number\n            properties:\n              status:\n                description: The phase of the lifecycle that the job is currently\n                  in.\n                example: queued\n                type: string\n                enum:\n                - queued\n                - in_progress\n                - completed\n              conclusion:\n                description: The outcome of the job.\n                example: success\n                type: string\n                nullable: true\n              name:\n                description: The name of the job.\n                example: test-coverage\n                type: string\n              number:\n                type: integer\n                example: 1\n              started_at:\n                description: The time that the step started, in ISO 8601 format.\n                example: '2019-08-08T08:00:00-07:00'\n                format: date-time\n                type: string\n                nullable: true\n              completed_at:\n                description: The time that the job finished, in ISO 8601 format.\n                example: '2019-08-08T08:00:00-07:00'\n                format: date-time\n                type: string\n                nullable: true\n        check_run_url:\n          type: string\n          example: https://api.github.com/repos/github/hello-world/check-runs/4\n        labels:\n          type: array\n          items:\n            type: string\n          description: Labels for the workflow job. Specified by the \"runs_on\" attribute\n            in the action's workflow file.\n          example:\n          - self-hosted\n          - foo\n          - bar\n        runner_id:\n          type: integer\n          nullable: true\n          example: 1\n          description: The ID of the runner to which this job has been assigned. (If\n            a runner hasn't yet been assigned, this will be null.)\n        runner_name:\n          type: string\n          nullable: true\n          example: my runner\n          description: The name of the runner to which this job has been assigned.\n            (If a runner hasn't yet been assigned, this will be null.)\n        runner_group_id:\n          type: integer\n          nullable: true\n          example: 2\n          description: The ID of the runner group to which this job has been assigned.\n            (If a runner hasn't yet been assigned, this will be null.)\n        runner_group_name:\n          type: string\n          nullable: true\n          example: my runner group\n          description: The name of the runner group to which this job has been assigned.\n            (If a runner hasn't yet been assigned, this will be null.)\n      required:\n      - id\n      - node_id\n      - run_id\n      - run_url\n      - head_sha\n      - name\n      - url\n      - html_url\n      - status\n      - conclusion\n      - started_at\n      - completed_at\n      - check_run_url\n      - labels\n      - runner_id\n      - runner_name\n      - runner_group_id\n      - runner_group_name\n    actions-enabled:\n      type: boolean\n      description: Whether GitHub Actions is enabled on the repository.\n    actions-repository-permissions:\n      type: object\n      properties:\n        enabled:\n          \"$ref\": \"#/components/schemas/actions-enabled\"\n        allowed_actions:\n          \"$ref\": \"#/components/schemas/allowed-actions\"\n        selected_actions_url:\n          \"$ref\": \"#/components/schemas/selected-actions-url\"\n      required:\n      - enabled\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    nullable-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      nullable: true\n    workflow-run:\n      title: Workflow Run\n      description: An invocation of a workflow\n      type: object\n      properties:\n        id:\n          type: integer\n          description: The ID of the workflow run.\n          example: 5\n        name:\n          type: string\n          description: The name of the workflow run.\n          nullable: true\n          example: Build\n        node_id:\n          type: string\n          example: MDEwOkNoZWNrU3VpdGU1\n        check_suite_id:\n          type: integer\n          description: The ID of the associated check suite.\n          example: 42\n        check_suite_node_id:\n          type: string\n          description: The node ID of the associated check suite.\n          example: MDEwOkNoZWNrU3VpdGU0Mg==\n        head_branch:\n          type: string\n          nullable: true\n          example: master\n        head_sha:\n          description: The SHA of the head commit that points to the version of the\n            worflow being run.\n          example: '009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d'\n          type: string\n        run_number:\n          type: integer\n          description: The auto incrementing run number for the workflow run.\n          example: 106\n        run_attempt:\n          type: integer\n          description: Attempt number of the run, 1 for first attempt and higher if\n            the workflow was re-run.\n          example: 1\n        event:\n          type: string\n          example: push\n        status:\n          type: string\n          nullable: true\n          example: completed\n        conclusion:\n          type: string\n          nullable: true\n          example: neutral\n        workflow_id:\n          type: integer\n          description: The ID of the parent workflow.\n          example: 5\n        url:\n          type: string\n          description: The URL to the workflow run.\n          example: https://api.github.com/repos/github/hello-world/actions/runs/5\n        html_url:\n          type: string\n          example: https://github.com/github/hello-world/suites/4\n        pull_requests:\n          type: array\n          nullable: true\n          items:\n            \"$ref\": \"#/components/schemas/pull-request-minimal\"\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        run_started_at:\n          type: string\n          format: date-time\n          description: The start time of the latest run. Resets on re-run.\n        jobs_url:\n          description: The URL to the jobs for the workflow run.\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/runs/5/jobs\n        logs_url:\n          description: The URL to download the logs for the workflow run.\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/runs/5/logs\n        check_suite_url:\n          description: The URL to the associated check suite.\n          type: string\n          example: https://api.github.com/repos/github/hello-world/check-suites/12\n        artifacts_url:\n          description: The URL to the artifacts for the workflow run.\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/runs/5/rerun/artifacts\n        cancel_url:\n          description: The URL to cancel the workflow run.\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/runs/5/cancel\n        rerun_url:\n          description: The URL to rerun the workflow run.\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/runs/5/rerun\n        previous_attempt_url:\n          nullable: true\n          description: The URL to the previous attempted run of this workflow, if\n            one exists.\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/runs/5/attempts/3\n        workflow_url:\n          description: The URL to the workflow.\n          type: string\n          example: https://api.github.com/repos/github/hello-world/actions/workflows/main.yaml\n        head_commit:\n          \"$ref\": \"#/components/schemas/nullable-simple-commit\"\n        repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n        head_repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n        head_repository_id:\n          type: integer\n          example: 5\n      required:\n      - id\n      - node_id\n      - head_branch\n      - run_number\n      - event\n      - status\n      - conclusion\n      - head_sha\n      - workflow_id\n      - url\n      - html_url\n      - created_at\n      - updated_at\n      - head_commit\n      - head_repository\n      - repository\n      - jobs_url\n      - logs_url\n      - check_suite_url\n      - cancel_url\n      - rerun_url\n      - artifacts_url\n      - workflow_url\n      - pull_requests\n    environment-approvals:\n      title: Environment Approval\n      description: An entry in the reviews log for environment deployments\n      type: object\n      properties:\n        environments:\n          description: The list of environments that were approved or rejected\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                description: The id of the environment.\n                example: 56780428\n                type: integer\n              node_id:\n                type: string\n                example: MDExOkVudmlyb25tZW50NTY3ODA0Mjg=\n              name:\n                description: The name of the environment.\n                example: staging\n                type: string\n              url:\n                type: string\n                example: https://api.github.com/repos/github/hello-world/environments/staging\n              html_url:\n                type: string\n                example: https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\n              created_at:\n                description: The time that the environment was created, in ISO 8601\n                  format.\n                example: '2020-11-23T22:00:40Z'\n                format: date-time\n                type: string\n              updated_at:\n                description: The time that the environment was last updated, in ISO\n                  8601 format.\n                example: '2020-11-23T22:00:40Z'\n                format: date-time\n                type: string\n        state:\n          description: Whether deployment to the environment(s) was approved or rejected\n          enum:\n          - approved\n          - rejected\n          example: approved\n          type: string\n        user:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        comment:\n          type: string\n          description: The comment submitted with the deployment review\n          example: Ship it!\n      required:\n      - environments\n      - state\n      - user\n      - comment\n    deployment-reviewer-type:\n      type: string\n      description: 'The type of reviewer. Must be one of: `User` or `Team`'\n      enum:\n      - User\n      - Team\n      example: User\n    pending-deployment:\n      title: Pending Deployment\n      description: Details of a deployment that is waiting for protection rules to\n        pass\n      type: object\n      properties:\n        environment:\n          type: object\n          properties:\n            id:\n              description: The id of the environment.\n              example: 56780428\n              type: integer\n            node_id:\n              type: string\n              example: MDExOkVudmlyb25tZW50NTY3ODA0Mjg=\n            name:\n              description: The name of the environment.\n              example: staging\n              type: string\n            url:\n              type: string\n              example: https://api.github.com/repos/github/hello-world/environments/staging\n            html_url:\n              type: string\n              example: https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\n        wait_timer:\n          type: integer\n          description: The set duration of the wait timer\n          example: 30\n        wait_timer_started_at:\n          description: The time that the wait timer began.\n          example: '2020-11-23T22:00:40Z'\n          format: date-time\n          type: string\n          nullable: true\n        current_user_can_approve:\n          description: Whether the currently authenticated user can approve the deployment\n          type: boolean\n          example: true\n        reviewers:\n          type: array\n          description: The people or teams that may approve jobs that reference the\n            environment. You can list up to six users or teams as reviewers. The reviewers\n            must have at least read access to the repository. Only one of the required\n            reviewers needs to approve the job for it to proceed.\n          items:\n            type: object\n            properties:\n              type:\n                \"$ref\": \"#/components/schemas/deployment-reviewer-type\"\n              reviewer:\n                anyOf:\n                - \"$ref\": \"#/components/schemas/simple-user\"\n                - \"$ref\": \"#/components/schemas/team\"\n      required:\n      - environment\n      - wait_timer\n      - wait_timer_started_at\n      - current_user_can_approve\n      - reviewers\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          oneOf:\n          - type: object\n            additionalProperties: true\n          - type: string\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          \"$ref\": \"#/components/schemas/nullable-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 the 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          \"$ref\": \"#/components/schemas/nullable-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    actions-secret:\n      title: Actions Secret\n      description: Set secrets for GitHub Actions.\n      type: object\n      properties:\n        name:\n          description: The name of the secret.\n          example: SECRET_TOKEN\n          type: string\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n      required:\n      - name\n      - created_at\n      - updated_at\n    workflow:\n      title: Workflow\n      description: A GitHub Actions workflow\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 5\n        node_id:\n          type: string\n          example: MDg6V29ya2Zsb3cxMg==\n        name:\n          type: string\n          example: CI\n        path:\n          type: string\n          example: ruby.yaml\n        state:\n          type: string\n          example: active\n          enum:\n          - active\n          - deleted\n          - disabled_fork\n          - disabled_inactivity\n          - disabled_manually\n        created_at:\n          type: string\n          format: date-time\n          example: '2019-12-06T14:20:20.000Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2019-12-06T14:20:20.000Z'\n        url:\n          type: string\n          example: https://api.github.com/repos/actions/setup-ruby/workflows/5\n        html_url:\n          type: string\n          example: https://github.com/actions/setup-ruby/blob/master/.github/workflows/ruby.yaml\n        badge_url:\n          type: string\n          example: https://github.com/actions/setup-ruby/workflows/CI/badge.svg\n        deleted_at:\n          type: string\n          format: date-time\n          example: '2019-12-06T14:20:20.000Z'\n      required:\n      - id\n      - node_id\n      - name\n      - path\n      - state\n      - url\n      - html_url\n      - badge_url\n      - created_at\n      - updated_at\n    autolink:\n      title: Autolink reference\n      description: An autolink reference.\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 3\n        key_prefix:\n          description: The prefix of a key that is linkified.\n          example: TICKET-\n          type: string\n        url_template:\n          description: A template for the target URL that is generated if a key was\n            found.\n          example: https://example.com/TICKET?query=<num>\n          type: string\n      required:\n      - id\n      - key_prefix\n      - url_template\n    protected-branch-required-status-check:\n      title: Protected Branch Required Status Check\n      description: Protected Branch Required Status Check\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        strict:\n          type: boolean\n      required:\n      - contexts\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    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    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                  site_admin:\n                    type: boolean\n                    example: false\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        enabled:\n          type: boolean\n        required_status_checks:\n          \"$ref\": \"#/components/schemas/protected-branch-required-status-check\"\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        required_conversation_resolution:\n          type: object\n          properties:\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_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    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    nullable-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      nullable: true\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    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          enum:\n          - added\n          - removed\n          - modified\n          - renamed\n          - copied\n          - changed\n          - unchanged\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:\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        sha:\n          type: string\n          example: 6dcb09b5b57875f334f61aebed695e2e4193db5e\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              \"$ref\": \"#/components/schemas/nullable-git-user\"\n            committer:\n              \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        committer:\n          \"$ref\": \"#/components/schemas/nullable-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            \"$ref\": \"#/components/schemas/diff-entry\"\n      required:\n      - url\n      - sha\n      - node_id\n      - html_url\n      - comments_url\n      - commit\n      - author\n      - committer\n      - parents\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: 1\n      required:\n      - name\n      - commit\n      - _links\n      - protection\n      - protected\n      - protection_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    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_conversation_resolution:\n          type: object\n          properties:\n            enabled:\n              type: boolean\n          additionalProperties: false\n      required:\n      - url\n    deployment-simple:\n      title: Deployment\n      description: A deployment created as the result of an Actions check run from\n        a workflow that references an environment\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        task:\n          description: Parameter to specify a task to execute\n          example: deploy\n          type: string\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        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 the 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          \"$ref\": \"#/components/schemas/nullable-integration\"\n      required:\n      - id\n      - node_id\n      - task\n      - environment\n      - description\n      - statuses_url\n      - repository_url\n      - url\n      - created_at\n      - updated_at\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: '42'\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          enum:\n          - success\n          - failure\n          - neutral\n          - cancelled\n          - skipped\n          - timed_out\n          - action_required\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          \"$ref\": \"#/components/schemas/nullable-integration\"\n        pull_requests:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/pull-request-minimal\"\n        deployment:\n          \"$ref\": \"#/components/schemas/deployment-simple\"\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-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    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    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          enum:\n          - queued\n          - in_progress\n          - completed\n          nullable: true\n        conclusion:\n          type: string\n          example: neutral\n          enum:\n          - success\n          - failure\n          - neutral\n          - cancelled\n          - skipped\n          - timed_out\n          - action_required\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          \"$ref\": \"#/components/schemas/nullable-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        rerequestable:\n          type: boolean\n        runs_rerequestable:\n          type: boolean\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-suite-preference:\n      title: Check Suite Preference\n      description: Check suite configuration preferences for a repository.\n      type: object\n      required:\n      - preferences\n      - repository\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/minimal-repository\"\n    code-scanning-analysis-tool-name:\n      type: string\n      description: The name of the tool used to generate the code scanning analysis.\n    code-scanning-analysis-tool-guid:\n      nullable: true\n      type: string\n      description: The GUID of the tool used to generate the code scanning analysis,\n        if provided in the uploaded SARIF data.\n    code-scanning-ref:\n      type: string\n      description: |-\n        The full Git reference, formatted as `refs/heads/<branch name>`,\n        `refs/pull/<number>/merge`, or `refs/pull/<number>/head`.\n    code-scanning-alert-state:\n      type: string\n      description: State of a code scanning alert.\n      enum:\n      - open\n      - closed\n      - dismissed\n      - fixed\n    alert-instances-url:\n      type: string\n      description: The REST API URL for fetching the list of instances for an alert.\n      format: uri\n      readOnly: true\n    code-scanning-alert-dismissed-at:\n      type: string\n      description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.'\n      format: date-time\n      readOnly: true\n      nullable: true\n    code-scanning-alert-dismissed-reason:\n      type: string\n      description: \"**Required when the state is dismissed.** The reason for dismissing\n        or closing the alert. Can be one of: `false positive`, `won't fix`, and `used\n        in tests`.\"\n      nullable: true\n      enum:\n      -\n      - false positive\n      - won't fix\n      - used in tests\n    code-scanning-alert-rule-summary:\n      type: object\n      properties:\n        id:\n          nullable: true\n          type: string\n          description: A unique identifier for the rule used to detect the alert.\n        name:\n          type: string\n          description: The name of the rule used to detect the alert.\n        severity:\n          nullable: true\n          type: string\n          description: The severity of the alert.\n          enum:\n          - none\n          - note\n          - warning\n          - error\n        description:\n          type: string\n          description: A short description of the rule used to detect the alert.\n    code-scanning-analysis-tool-version:\n      nullable: true\n      type: string\n      description: The version of the tool used to generate the code scanning analysis.\n    code-scanning-analysis-tool:\n      type: object\n      properties:\n        name:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-tool-name\"\n        version:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-tool-version\"\n        guid:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-tool-guid\"\n    code-scanning-analysis-analysis-key:\n      type: string\n      description: Identifies the configuration under which the analysis was executed.\n        For example, in GitHub Actions this includes the workflow filename and job\n        name.\n    code-scanning-alert-environment:\n      type: string\n      description: Identifies the variable values associated with the environment\n        in which the analysis that generated this alert instance was performed, such\n        as the language that was analyzed.\n    code-scanning-analysis-category:\n      type: string\n      description: Identifies the configuration under which the analysis was executed.\n        Used to distinguish between multiple analyses for the same tool and commit,\n        but performed on different languages or different parts of the code.\n    code-scanning-alert-location:\n      type: object\n      description: Describe a region within a file for the alert.\n      properties:\n        path:\n          type: string\n        start_line:\n          type: integer\n        end_line:\n          type: integer\n        start_column:\n          type: integer\n        end_column:\n          type: integer\n    code-scanning-alert-classification:\n      type: string\n      description: A classification of the file. For example to identify it as generated.\n      nullable: true\n      enum:\n      - source\n      - generated\n      - test\n      - library\n    code-scanning-alert-instance:\n      type: object\n      properties:\n        ref:\n          \"$ref\": \"#/components/schemas/code-scanning-ref\"\n        analysis_key:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-analysis-key\"\n        environment:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-environment\"\n        category:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-category\"\n        state:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-state\"\n        commit_sha:\n          type: string\n        message:\n          type: object\n          properties:\n            text:\n              type: string\n        location:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-location\"\n        html_url:\n          type: string\n        classifications:\n          type: array\n          description: |-\n            Classifications that have been applied to the file that triggered the alert.\n            For example identifying it as documentation, or a generated file.\n          items:\n            \"$ref\": \"#/components/schemas/code-scanning-alert-classification\"\n    code-scanning-alert-items:\n      type: object\n      properties:\n        number:\n          \"$ref\": \"#/components/schemas/alert-number\"\n        created_at:\n          \"$ref\": \"#/components/schemas/alert-created-at\"\n        url:\n          \"$ref\": \"#/components/schemas/alert-url\"\n        html_url:\n          \"$ref\": \"#/components/schemas/alert-html-url\"\n        instances_url:\n          \"$ref\": \"#/components/schemas/alert-instances-url\"\n        state:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-state\"\n        dismissed_by:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        dismissed_at:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-dismissed-at\"\n        dismissed_reason:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-dismissed-reason\"\n        rule:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-rule-summary\"\n        tool:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-tool\"\n        most_recent_instance:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-instance\"\n      required:\n      - number\n      - created_at\n      - url\n      - html_url\n      - instances_url\n      - state\n      - dismissed_by\n      - dismissed_at\n      - dismissed_reason\n      - rule\n      - tool\n      - most_recent_instance\n    code-scanning-alert-rule:\n      type: object\n      properties:\n        id:\n          nullable: true\n          type: string\n          description: A unique identifier for the rule used to detect the alert.\n        name:\n          type: string\n          description: The name of the rule used to detect the alert.\n        severity:\n          nullable: true\n          type: string\n          description: The severity of the alert.\n          enum:\n          - none\n          - note\n          - warning\n          - error\n        security_severity_level:\n          nullable: true\n          type: string\n          description: The security severity of the alert.\n          enum:\n          - low\n          - medium\n          - high\n          - critical\n        description:\n          type: string\n          description: A short description of the rule used to detect the alert.\n        full_description:\n          type: string\n          description: description of the rule used to detect the alert.\n        tags:\n          nullable: true\n          type: array\n          description: A set of tags applicable for the rule.\n          items:\n            type: string\n        help:\n          nullable: true\n          type: string\n          description: Detailed documentation for the rule as GitHub Flavored Markdown.\n    code-scanning-alert:\n      type: object\n      properties:\n        number:\n          \"$ref\": \"#/components/schemas/alert-number\"\n        created_at:\n          \"$ref\": \"#/components/schemas/alert-created-at\"\n        url:\n          \"$ref\": \"#/components/schemas/alert-url\"\n        html_url:\n          \"$ref\": \"#/components/schemas/alert-html-url\"\n        instances_url:\n          \"$ref\": \"#/components/schemas/alert-instances-url\"\n        state:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-state\"\n        dismissed_by:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        dismissed_at:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-dismissed-at\"\n        dismissed_reason:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-dismissed-reason\"\n        rule:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-rule\"\n        tool:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-tool\"\n        most_recent_instance:\n          \"$ref\": \"#/components/schemas/code-scanning-alert-instance\"\n      required:\n      - number\n      - created_at\n      - url\n      - html_url\n      - instances_url\n      - state\n      - dismissed_by\n      - dismissed_at\n      - dismissed_reason\n      - rule\n      - tool\n      - most_recent_instance\n    code-scanning-alert-set-state:\n      description: Sets the state of the code scanning alert. Can be one of `open`\n        or `dismissed`. You must provide `dismissed_reason` when you set the state\n        to `dismissed`.\n      type: string\n      enum:\n      - open\n      - dismissed\n    code-scanning-analysis-sarif-id:\n      type: string\n      description: An identifier for the upload.\n      example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53\n    code-scanning-analysis-commit-sha:\n      description: The SHA of the commit to which the analysis you are uploading relates.\n      type: string\n      minLength: 40\n      maxLength: 40\n      pattern: \"^[0-9a-fA-F]+$\"\n    code-scanning-analysis-environment:\n      type: string\n      description: Identifies the variable values associated with the environment\n        in which this analysis was performed.\n    code-scanning-analysis-created-at:\n      type: string\n      description: 'The time that the analysis was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.'\n      format: date-time\n      readOnly: true\n    code-scanning-analysis-url:\n      type: string\n      description: The REST API URL of the analysis resource.\n      format: uri\n      readOnly: true\n    code-scanning-analysis:\n      type: object\n      properties:\n        ref:\n          \"$ref\": \"#/components/schemas/code-scanning-ref\"\n        commit_sha:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-commit-sha\"\n        analysis_key:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-analysis-key\"\n        environment:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-environment\"\n        category:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-category\"\n        error:\n          type: string\n          example: error reading field xyz\n        created_at:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-created-at\"\n        results_count:\n          type: integer\n          description: The total number of results in the analysis.\n        rules_count:\n          type: integer\n          description: The total number of rules used in the analysis.\n        id:\n          type: integer\n          description: Unique identifier for this analysis.\n        url:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-url\"\n        sarif_id:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-sarif-id\"\n        tool:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-tool\"\n        deletable:\n          type: boolean\n        warning:\n          type: string\n          description: Warning generated when processing the analysis\n          example: 123 results were ignored\n      required:\n      - ref\n      - commit_sha\n      - analysis_key\n      - environment\n      - error\n      - created_at\n      - results_count\n      - rules_count\n      - id\n      - url\n      - sarif_id\n      - tool\n      - deletable\n      - warning\n    code-scanning-analysis-deletion:\n      title: Analysis deletion\n      description: Successful deletion of a code scanning analysis\n      type: object\n      properties:\n        next_analysis_url:\n          type: string\n          description: Next deletable analysis in chain, without last analysis deletion\n            confirmation\n          format: uri\n          readOnly: true\n          nullable: true\n        confirm_delete_url:\n          type: string\n          description: Next deletable analysis in chain, with last analysis deletion\n            confirmation\n          format: uri\n          readOnly: true\n          nullable: true\n      required:\n      - next_analysis_url\n      - confirm_delete_url\n    code-scanning-analysis-sarif-file:\n      description: A Base64 string representing the SARIF file to upload. You must\n        first compress your SARIF file using [`gzip`](http://www.gnu.org/software/gzip/manual/gzip.html)\n        and then translate the contents of the file into a Base64 encoding string.\n        For more information, see \"[SARIF support for code scanning](https://docs.github.com/enterprise-server@3.3/code-security/secure-coding/sarif-support-for-code-scanning).\"\n      type: string\n    code-scanning-sarifs-receipt:\n      type: object\n      properties:\n        id:\n          \"$ref\": \"#/components/schemas/code-scanning-analysis-sarif-id\"\n        url:\n          type: string\n          description: The REST API URL for checking the status of the upload.\n          format: uri\n          readOnly: true\n    code-scanning-sarifs-status:\n      type: object\n      properties:\n        processing_status:\n          type: string\n          enum:\n          - pending\n          - complete\n          description: \"`pending` files have not yet been processed, while `complete`\n            means all results in the SARIF have been stored.\"\n        analyses_url:\n          type: string\n          description: The REST API URL for getting the analyses associated with the\n            upload.\n          format: uri\n          readOnly: true\n          nullable: true\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        email:\n          nullable: true\n          type: string\n        name:\n          nullable: true\n          type: string\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: 41d064eb2195891e12d0413f63227ea7\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            triage:\n              type: boolean\n            push:\n              type: boolean\n            maintain:\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-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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        inviter:\n          \"$ref\": \"#/components/schemas/nullable-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          - triage\n          - maintain\n        created_at:\n          type: string\n          format: date-time\n          example: '2016-06-13T14:52:50-05:00'\n        expired:\n          description: Whether or not the invitation has expired\n          type: boolean\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    nullable-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        email:\n          nullable: true\n          type: string\n        name:\n          nullable: true\n          type: string\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: 41d064eb2195891e12d0413f63227ea7\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            triage:\n              type: boolean\n            push:\n              type: boolean\n            maintain:\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      nullable: true\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          \"$ref\": \"#/components/schemas/nullable-collaborator\"\n      required:\n      - permission\n      - user\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          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/author_association\"\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    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          required:\n          - sha\n          - url\n        protected:\n          type: boolean\n      required:\n      - name\n      - commit\n      - protected\n    link:\n      title: Link\n      description: Hypermedia Link\n      type: object\n      properties:\n        href:\n          type: string\n      required:\n      - href\n    auto_merge:\n      title: Auto merge\n      description: The status of auto merging a pull request.\n      type: object\n      properties:\n        enabled_by:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        merge_method:\n          type: string\n          description: The merge method to use.\n          enum:\n          - merge\n          - squash\n          - rebase\n        commit_title:\n          type: string\n          description: Title for the merge commit message.\n        commit_message:\n          type: string\n          description: Commit message for the merge commit.\n      required:\n      - enabled_by\n      - merge_method\n      - commit_title\n      - commit_message\n      nullable: true\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          \"$ref\": \"#/components/schemas/nullable-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                format: int64\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            required:\n            - id\n            - node_id\n            - url\n            - name\n            - description\n            - color\n            - default\n        milestone:\n          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/nullable-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\"\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              \"$ref\": \"#/components/schemas/nullable-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              \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/author_association\"\n        auto_merge:\n          \"$ref\": \"#/components/schemas/auto_merge\"\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      - auto_merge\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    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/nullable-simple-user\"\n      required:\n      - url\n      - avatar_url\n      - id\n      - node_id\n      - state\n      - description\n      - target_url\n      - context\n      - created_at\n      - updated_at\n      - creator\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    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    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      required:\n      - content\n      - commit\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    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    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          \"$ref\": \"#/components/schemas/nullable-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: https://staging.example.com/\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          \"$ref\": \"#/components/schemas/nullable-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    wait-timer:\n      type: integer\n      example: 30\n      description: The amount of time to delay a job after the job is initially triggered.\n        The time (in minutes) must be an integer between 0 and 43,200 (30 days).\n    deployment_branch_policy:\n      type: object\n      description: The type of deployment branch policy for this environment. To allow\n        all branches to deploy, set to `null`.\n      properties:\n        protected_branches:\n          type: boolean\n          description: Whether only branches with branch protection rules can deploy\n            to this environment. If `protected_branches` is `true`, `custom_branch_policies`\n            must be `false`; if `protected_branches` is `false`, `custom_branch_policies`\n            must be `true`.\n        custom_branch_policies:\n          type: boolean\n          description: Whether only branches that match the specified name patterns\n            can deploy to this environment.  If `custom_branch_policies` is `true`,\n            `protected_branches` must be `false`; if `custom_branch_policies` is `false`,\n            `protected_branches` must be `true`.\n      nullable: true\n      required:\n      - protected_branches\n      - custom_branch_policies\n    environment:\n      title: Environment\n      description: Details of a deployment environment\n      type: object\n      properties:\n        id:\n          description: The id of the environment.\n          example: 56780428\n          type: integer\n        node_id:\n          type: string\n          example: MDExOkVudmlyb25tZW50NTY3ODA0Mjg=\n        name:\n          description: The name of the environment.\n          example: staging\n          type: string\n        url:\n          type: string\n          example: https://api.github.com/repos/github/hello-world/environments/staging\n        html_url:\n          type: string\n          example: https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\n        created_at:\n          description: The time that the environment was created, in ISO 8601 format.\n          example: '2020-11-23T22:00:40Z'\n          format: date-time\n          type: string\n        updated_at:\n          description: The time that the environment was last updated, in ISO 8601\n            format.\n          example: '2020-11-23T22:00:40Z'\n          format: date-time\n          type: string\n        protection_rules:\n          type: array\n          items:\n            anyOf:\n            - type: object\n              properties:\n                id:\n                  type: integer\n                  example: 3515\n                node_id:\n                  type: string\n                  example: MDQ6R2F0ZTM1MTU=\n                type:\n                  type: string\n                  example: wait_timer\n                wait_timer:\n                  \"$ref\": \"#/components/schemas/wait-timer\"\n              required:\n              - id\n              - node_id\n              - type\n            - type: object\n              properties:\n                id:\n                  type: integer\n                  example: 3755\n                node_id:\n                  type: string\n                  example: MDQ6R2F0ZTM3NTU=\n                type:\n                  type: string\n                  example: required_reviewers\n                reviewers:\n                  type: array\n                  description: The people or teams that may approve jobs that reference\n                    the environment. You can list up to six users or teams as reviewers.\n                    The reviewers must have at least read access to the repository.\n                    Only one of the required reviewers needs to approve the job for\n                    it to proceed.\n                  items:\n                    type: object\n                    properties:\n                      type:\n                        \"$ref\": \"#/components/schemas/deployment-reviewer-type\"\n                      reviewer:\n                        anyOf:\n                        - \"$ref\": \"#/components/schemas/simple-user\"\n                        - \"$ref\": \"#/components/schemas/team\"\n              required:\n              - id\n              - node_id\n              - type\n            - type: object\n              properties:\n                id:\n                  type: integer\n                  example: 3515\n                node_id:\n                  type: string\n                  example: MDQ6R2F0ZTM1MTU=\n                type:\n                  type: string\n                  example: branch_policy\n              required:\n              - id\n              - node_id\n              - type\n        deployment_branch_policy:\n          \"$ref\": \"#/components/schemas/deployment_branch_policy\"\n      required:\n      - id\n      - node_id\n      - name\n      - url\n      - html_url\n      - created_at\n      - updated_at\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      required:\n      - url\n      - sha\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    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          - date\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          - date\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          required:\n          - sha\n          - url\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            required:\n            - sha\n            - url\n            - html_url\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          required:\n          - verified\n          - reason\n          - signature\n          - payload\n        html_url:\n          type: string\n          format: uri\n      required:\n      - sha\n      - node_id\n      - url\n      - html_url\n      - author\n      - committer\n      - tree\n      - message\n      - parents\n      - verification\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          required:\n          - type\n          - sha\n          - url\n      required:\n      - ref\n      - node_id\n      - url\n      - object\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    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    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: Webhook\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              \"$ref\": \"#/components/schemas/webhook-config-url\"\n            insecure_ssl:\n              \"$ref\": \"#/components/schemas/webhook-config-insecure-ssl\"\n            content_type:\n              \"$ref\": \"#/components/schemas/webhook-config-content-type\"\n            digest:\n              type: string\n              example: '\"sha256\"'\n            secret:\n              \"$ref\": \"#/components/schemas/webhook-config-secret\"\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        deliveries_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries\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    nullable-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          nullable: true\n        user:\n          \"$ref\": \"#/components/schemas/nullable-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                  format: int64\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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        assignees:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        milestone:\n          \"$ref\": \"#/components/schemas/nullable-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        draft:\n          type: boolean\n        closed_by:\n          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/nullable-integration\"\n        author_association:\n          \"$ref\": \"#/components/schemas/author_association\"\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      nullable: true\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          \"$ref\": \"#/components/schemas/nullable-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/nullable-issue\"\n        label:\n          \"$ref\": \"#/components/schemas/issue-event-label\"\n        assignee:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        assigner:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        review_requester:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        requested_reviewer:\n          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/author_association\"\n        lock_reason:\n          type: string\n          nullable: true\n        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n    labeled-issue-event:\n      title: Labeled Issue Event\n      description: Labeled Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        label:\n          type: object\n          properties:\n            name:\n              type: string\n            color:\n              type: string\n          required:\n          - name\n          - color\n      required:\n      - label\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    unlabeled-issue-event:\n      title: Unlabeled Issue Event\n      description: Unlabeled Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        label:\n          type: object\n          properties:\n            name:\n              type: string\n            color:\n              type: string\n          required:\n          - name\n          - color\n      required:\n      - label\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    assigned-issue-event:\n      title: Assigned Issue Event\n      description: Assigned Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/integration\"\n        assignee:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        assigner:\n          \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n      - assignee\n      - assigner\n    unassigned-issue-event:\n      title: Unassigned Issue Event\n      description: Unassigned Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        assignee:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        assigner:\n          \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n      - assignee\n      - assigner\n    milestoned-issue-event:\n      title: Milestoned Issue Event\n      description: Milestoned Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        milestone:\n          type: object\n          properties:\n            title:\n              type: string\n          required:\n          - title\n      required:\n      - milestone\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    demilestoned-issue-event:\n      title: Demilestoned Issue Event\n      description: Demilestoned Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        milestone:\n          type: object\n          properties:\n            title:\n              type: string\n          required:\n          - title\n      required:\n      - milestone\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    renamed-issue-event:\n      title: Renamed Issue Event\n      description: Renamed Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        rename:\n          type: object\n          properties:\n            from:\n              type: string\n            to:\n              type: string\n          required:\n          - from\n          - to\n      required:\n      - rename\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    review-requested-issue-event:\n      title: Review Requested Issue Event\n      description: Review Requested Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        review_requester:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        requested_team:\n          \"$ref\": \"#/components/schemas/team\"\n        requested_reviewer:\n          \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - review_requester\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    review-request-removed-issue-event:\n      title: Review Request Removed Issue Event\n      description: Review Request Removed Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        review_requester:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        requested_team:\n          \"$ref\": \"#/components/schemas/team\"\n        requested_reviewer:\n          \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - review_requester\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    review-dismissed-issue-event:\n      title: Review Dismissed Issue Event\n      description: Review Dismissed Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        dismissed_review:\n          type: object\n          properties:\n            state:\n              type: string\n            review_id:\n              type: integer\n            dismissal_message:\n              nullable: true\n              type: string\n            dismissal_commit_id:\n              type: string\n          required:\n          - state\n          - review_id\n          - dismissal_message\n      required:\n      - dismissed_review\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    locked-issue-event:\n      title: Locked Issue Event\n      description: Locked Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        lock_reason:\n          type: string\n          example: '\"off-topic\"'\n          nullable: true\n      required:\n      - lock_reason\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    added-to-project-issue-event:\n      title: Added to Project Issue Event\n      description: Added to Project Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        project_card:\n          type: object\n          properties:\n            id:\n              type: integer\n            url:\n              type: string\n              format: uri\n            project_id:\n              type: integer\n            project_url:\n              type: string\n              format: uri\n            column_name:\n              type: string\n            previous_column_name:\n              type: string\n          required:\n          - id\n          - url\n          - project_id\n          - project_url\n          - column_name\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    moved-column-in-project-issue-event:\n      title: Moved Column in Project Issue Event\n      description: Moved Column in Project Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        project_card:\n          type: object\n          properties:\n            id:\n              type: integer\n            url:\n              type: string\n              format: uri\n            project_id:\n              type: integer\n            project_url:\n              type: string\n              format: uri\n            column_name:\n              type: string\n            previous_column_name:\n              type: string\n          required:\n          - id\n          - url\n          - project_id\n          - project_url\n          - column_name\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    removed-from-project-issue-event:\n      title: Removed from Project Issue Event\n      description: Removed from Project Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        project_card:\n          type: object\n          properties:\n            id:\n              type: integer\n            url:\n              type: string\n              format: uri\n            project_id:\n              type: integer\n            project_url:\n              type: string\n              format: uri\n            column_name:\n              type: string\n            previous_column_name:\n              type: string\n          required:\n          - id\n          - url\n          - project_id\n          - project_url\n          - column_name\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    converted-note-to-issue-issue-event:\n      title: Converted Note to Issue Issue Event\n      description: Converted Note to Issue Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/integration\"\n        project_card:\n          type: object\n          properties:\n            id:\n              type: integer\n            url:\n              type: string\n              format: uri\n            project_id:\n              type: integer\n            project_url:\n              type: string\n              format: uri\n            column_name:\n              type: string\n            previous_column_name:\n              type: string\n          required:\n          - id\n          - url\n          - project_id\n          - project_url\n          - column_name\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n    issue-event-for-issue:\n      title: Issue Event for Issue\n      description: Issue Event for Issue\n      anyOf:\n      - \"$ref\": \"#/components/schemas/labeled-issue-event\"\n      - \"$ref\": \"#/components/schemas/unlabeled-issue-event\"\n      - \"$ref\": \"#/components/schemas/assigned-issue-event\"\n      - \"$ref\": \"#/components/schemas/unassigned-issue-event\"\n      - \"$ref\": \"#/components/schemas/milestoned-issue-event\"\n      - \"$ref\": \"#/components/schemas/demilestoned-issue-event\"\n      - \"$ref\": \"#/components/schemas/renamed-issue-event\"\n      - \"$ref\": \"#/components/schemas/review-requested-issue-event\"\n      - \"$ref\": \"#/components/schemas/review-request-removed-issue-event\"\n      - \"$ref\": \"#/components/schemas/review-dismissed-issue-event\"\n      - \"$ref\": \"#/components/schemas/locked-issue-event\"\n      - \"$ref\": \"#/components/schemas/added-to-project-issue-event\"\n      - \"$ref\": \"#/components/schemas/moved-column-in-project-issue-event\"\n      - \"$ref\": \"#/components/schemas/removed-from-project-issue-event\"\n      - \"$ref\": \"#/components/schemas/converted-note-to-issue-issue-event\"\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          format: int64\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      - id\n      - node_id\n      - url\n      - name\n      - description\n      - color\n      - default\n    timeline-comment-event:\n      title: Timeline Comment Event\n      description: Timeline Comment Event\n      type: object\n      properties:\n        event:\n          type: string\n        actor:\n          \"$ref\": \"#/components/schemas/simple-user\"\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          \"$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          \"$ref\": \"#/components/schemas/author_association\"\n        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\n      required:\n      - event\n      - actor\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    timeline-cross-referenced-event:\n      title: Timeline Cross Referenced Event\n      description: Timeline Cross Referenced Event\n      type: object\n      properties:\n        event:\n          type: string\n        actor:\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        source:\n          type: object\n          properties:\n            type:\n              type: string\n            issue:\n              \"$ref\": \"#/components/schemas/issue\"\n      required:\n      - event\n      - created_at\n      - updated_at\n      - source\n    timeline-committed-event:\n      title: Timeline Committed Event\n      description: Timeline Committed Event\n      type: object\n      properties:\n        event:\n          type: string\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          - date\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          - date\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          required:\n          - sha\n          - url\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            required:\n            - sha\n            - url\n            - html_url\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          required:\n          - verified\n          - reason\n          - signature\n          - payload\n        html_url:\n          type: string\n          format: uri\n      required:\n      - sha\n      - node_id\n      - url\n      - html_url\n      - author\n      - committer\n      - tree\n      - message\n      - parents\n      - verification\n    timeline-reviewed-event:\n      title: Timeline Reviewed Event\n      description: Timeline Reviewed Event\n      type: object\n      properties:\n        event:\n          type: string\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          \"$ref\": \"#/components/schemas/simple-user\"\n        body:\n          nullable: true\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          \"$ref\": \"#/components/schemas/author_association\"\n      required:\n      - event\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-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.yaml\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          \"$ref\": \"#/components/schemas/author_association\"\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    timeline-line-commented-event:\n      title: Timeline Line Commented Event\n      description: Timeline Line Commented Event\n      type: object\n      properties:\n        event:\n          type: string\n        node_id:\n          type: string\n        comments:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/pull-request-review-comment\"\n    timeline-commit-commented-event:\n      title: Timeline Commit Commented Event\n      description: Timeline Commit Commented Event\n      type: object\n      properties:\n        event:\n          type: string\n        node_id:\n          type: string\n        commit_id:\n          type: string\n        comments:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/commit-comment\"\n    timeline-assigned-issue-event:\n      title: Timeline Assigned Issue Event\n      description: Timeline Assigned Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        assignee:\n          \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n      - assignee\n    timeline-unassigned-issue-event:\n      title: Timeline Unassigned Issue Event\n      description: Timeline Unassigned Issue Event\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        performed_via_github_app:\n          \"$ref\": \"#/components/schemas/nullable-integration\"\n        assignee:\n          \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n      - performed_via_github_app\n      - assignee\n    timeline-issue-events:\n      title: Timeline Event\n      description: Timeline Event\n      type: object\n      anyOf:\n      - \"$ref\": \"#/components/schemas/labeled-issue-event\"\n      - \"$ref\": \"#/components/schemas/unlabeled-issue-event\"\n      - \"$ref\": \"#/components/schemas/milestoned-issue-event\"\n      - \"$ref\": \"#/components/schemas/demilestoned-issue-event\"\n      - \"$ref\": \"#/components/schemas/renamed-issue-event\"\n      - \"$ref\": \"#/components/schemas/review-requested-issue-event\"\n      - \"$ref\": \"#/components/schemas/review-request-removed-issue-event\"\n      - \"$ref\": \"#/components/schemas/review-dismissed-issue-event\"\n      - \"$ref\": \"#/components/schemas/locked-issue-event\"\n      - \"$ref\": \"#/components/schemas/added-to-project-issue-event\"\n      - \"$ref\": \"#/components/schemas/moved-column-in-project-issue-event\"\n      - \"$ref\": \"#/components/schemas/removed-from-project-issue-event\"\n      - \"$ref\": \"#/components/schemas/converted-note-to-issue-issue-event\"\n      - \"$ref\": \"#/components/schemas/timeline-comment-event\"\n      - \"$ref\": \"#/components/schemas/timeline-cross-referenced-event\"\n      - \"$ref\": \"#/components/schemas/timeline-committed-event\"\n      - \"$ref\": \"#/components/schemas/timeline-reviewed-event\"\n      - \"$ref\": \"#/components/schemas/timeline-line-commented-event\"\n      - \"$ref\": \"#/components/schemas/timeline-commit-commented-event\"\n      - \"$ref\": \"#/components/schemas/timeline-assigned-issue-event\"\n      - \"$ref\": \"#/components/schemas/timeline-unassigned-issue-event\"\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      required:\n      - id\n      - key\n      - url\n      - title\n      - verified\n      - created_at\n      - read_only\n    language:\n      title: Language\n      description: Language\n      type: object\n      additionalProperties:\n        type: integer\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          \"$ref\": \"#/components/schemas/nullable-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    merged-upstream:\n      title: Merged upstream\n      description: Results of a successful merge upstream request\n      type: object\n      properties:\n        message:\n          type: string\n        merge_type:\n          type: string\n          enum:\n          - merge\n          - fast-forward\n          - none\n        base_branch:\n          type: string\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          \"$ref\": \"#/components/schemas/nullable-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    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    pages-https-certificate:\n      title: Pages Https Certificate\n      type: object\n      properties:\n        state:\n          type: string\n          enum:\n          - new\n          - authorization_created\n          - authorization_pending\n          - authorized\n          - authorization_revoked\n          - issued\n          - uploaded\n          - approved\n          - errored\n          - bad_authz\n          - destroy_pending\n          - dns_changed\n          example: approved\n        description:\n          type: string\n          example: Certificate is approved\n        domains:\n          type: array\n          items:\n            type: string\n          description: Array of the domain set and its alternate name (if it is configured)\n          example:\n          - example.com\n          - www.example.com\n        expires_at:\n          type: string\n          format: date\n      required:\n      - state\n      - description\n      - domains\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        protected_domain_state:\n          type: string\n          description: The state if the domain is verified\n          example: pending\n          nullable: true\n          enum:\n          - pending\n          - verified\n          - unverified\n        pending_domain_unverified_at:\n          type: string\n          description: The timestamp when a pending domain becomes unverified.\n          nullable: true\n          format: date-time\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        public:\n          type: boolean\n          description: Whether the GitHub Pages site is publicly visible. If set to\n            `true`, the site is accessible to anyone on the internet. If set to `false`,\n            the site will only be accessible to users who have at least `read` access\n            to the repository that published the site.\n          example: true\n        https_certificate:\n          \"$ref\": \"#/components/schemas/pages-https-certificate\"\n        https_enforced:\n          type: boolean\n          description: Whether https is enabled on the domain\n          example: true\n      required:\n      - url\n      - status\n      - cname\n      - custom_404\n      - public\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          \"$ref\": \"#/components/schemas/nullable-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    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    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    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    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          \"$ref\": \"#/components/schemas/nullable-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                format: int64\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            required:\n            - id\n            - node_id\n            - url\n            - name\n            - description\n            - color\n            - default\n        milestone:\n          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/nullable-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              nullable: true\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                visibility:\n                  description: 'The repository visibility: public, private, or internal.'\n                  type: string\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                    maintain:\n                      type: boolean\n                    push:\n                      type: boolean\n                    triage:\n                      type: boolean\n                    pull:\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                allow_forking:\n                  type: boolean\n                is_template:\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            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                is_template:\n                  type: boolean\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                visibility:\n                  description: 'The repository visibility: public, private, or internal.'\n                  type: string\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                    maintain:\n                      type: boolean\n                    push:\n                      type: boolean\n                    triage:\n                      type: boolean\n                    pull:\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                  \"$ref\": \"#/components/schemas/nullable-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                allow_forking:\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            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          \"$ref\": \"#/components/schemas/author_association\"\n        auto_merge:\n          \"$ref\": \"#/components/schemas/auto_merge\"\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          \"$ref\": \"#/components/schemas/nullable-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      - auto_merge\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    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            \"$ref\": \"#/components/schemas/simple-user\"\n        teams:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/team\"\n      required:\n      - users\n      - teams\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          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/author_association\"\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    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          \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/author_association\"\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        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\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    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          - 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          \"$ref\": \"#/components/schemas/nullable-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    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        mentions_count:\n          type: integer\n        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\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    release-notes-content:\n      title: Generated Release Notes Content\n      description: Generated name and body describing a release\n      type: object\n      properties:\n        name:\n          description: The generated name of the release\n          type: string\n          example: Release v1.0.0 is now available!\n        body:\n          description: The generated body describing the contents of the release supporting\n            markdown formatting\n          type: string\n      required:\n      - name\n      - body\n    secret-scanning-alert:\n      type: object\n      properties:\n        number:\n          \"$ref\": \"#/components/schemas/alert-number\"\n        created_at:\n          \"$ref\": \"#/components/schemas/alert-created-at\"\n        url:\n          \"$ref\": \"#/components/schemas/alert-url\"\n        html_url:\n          \"$ref\": \"#/components/schemas/alert-html-url\"\n        locations_url:\n          type: string\n          format: uri\n          description: The REST API URL of the code locations for this alert.\n        state:\n          \"$ref\": \"#/components/schemas/secret-scanning-alert-state\"\n        resolution:\n          \"$ref\": \"#/components/schemas/secret-scanning-alert-resolution\"\n        resolved_at:\n          type: string\n          format: date-time\n          description: 'The time that the alert was resolved in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.'\n          nullable: true\n        resolved_by:\n          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        secret_type:\n          type: string\n          description: The type of secret that secret scanning detected.\n        secret:\n          type: string\n          description: The secret that was detected.\n    secret-scanning-location-commit:\n      description: Represents a 'commit' secret scanning location type. This location\n        type shows that a secret was detected inside a commit to a repository.\n      type: object\n      properties:\n        path:\n          type: string\n          description: The file path in the repository\n          example: \"/example/secrets.txt\"\n        start_line:\n          type: number\n          description: Line number at which the secret starts in the file\n        end_line:\n          type: number\n          description: Line number at which the secret ends in the file\n        start_column:\n          type: number\n          description: The column at which the secret starts within the start line\n            when the file is interpreted as 8BIT ASCII\n        end_column:\n          type: number\n          description: The column at which the secret ends within the end line when\n            the file is interpreted as 8BIT ASCII\n        blob_sha:\n          type: string\n          description: SHA-1 hash ID of the associated blob\n          example: af5626b4a114abcb82d63db7c8082c3c4756e51b\n        blob_url:\n          type: string\n          description: The API URL to get the associated blob resource\n        commit_sha:\n          type: string\n          description: SHA-1 hash ID of the associated commit\n          example: af5626b4a114abcb82d63db7c8082c3c4756e51b\n        commit_url:\n          type: string\n          description: The API URL to get the associated commit resource\n      required:\n      - path\n      - start_line\n      - end_line\n      - start_column\n      - end_column\n      - blob_sha\n      - blob_url\n      - commit_sha\n      - commit_url\n    secret-scanning-location:\n      type: object\n      properties:\n        type:\n          type: string\n          enum:\n          - commit\n          description: The location type. Because secrets may be found in different\n            types of resources (ie. code, comments, issues), this field identifies\n            the type of resource where the secret was found.\n          example: commit\n        details:\n          oneOf:\n          - \"$ref\": \"#/components/schemas/secret-scanning-location-commit\"\n      required:\n      - type\n      - details\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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n      required:\n      - starred_at\n      - user\n    code-frequency-stat:\n      title: Code Frequency Stat\n      description: Code Frequency Stat\n      type: array\n      items:\n        type: integer\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    contributor-activity:\n      title: Contributor Activity\n      description: Contributor Activity\n      type: object\n      properties:\n        author:\n          \"$ref\": \"#/components/schemas/nullable-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: integer\n              a:\n                type: integer\n              d:\n                type: integer\n              c:\n                type: integer\n      required:\n      - author\n      - total\n      - weeks\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      required:\n      - all\n      - owner\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    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    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      required:\n      - names\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: number\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    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              \"$ref\": \"#/components/schemas/nullable-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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        committer:\n          \"$ref\": \"#/components/schemas/nullable-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: number\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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        labels:\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n                format: int64\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          \"$ref\": \"#/components/schemas/nullable-simple-user\"\n        milestone:\n          \"$ref\": \"#/components/schemas/nullable-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: number\n        author_association:\n          \"$ref\": \"#/components/schemas/author_association\"\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          \"$ref\": \"#/components/schemas/nullable-integration\"\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      - score\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: number\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    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          \"$ref\": \"#/components/schemas/nullable-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: number\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        visibility:\n          description: 'The repository visibility: public, private, or internal.'\n          type: string\n        license:\n          \"$ref\": \"#/components/schemas/nullable-license-simple\"\n        permissions:\n          type: object\n          properties:\n            admin:\n              type: boolean\n            maintain:\n              type: boolean\n            push:\n              type: boolean\n            triage:\n              type: boolean\n            pull:\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        allow_auto_merge:\n          type: boolean\n        delete_branch_on_merge:\n          type: boolean\n        allow_forking:\n          type: boolean\n        is_template:\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: number\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    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: number\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    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    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    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    ssh-key:\n      type: object\n      properties:\n        key:\n          type: string\n        pretty-print:\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: 41d064eb2195891e12d0413f63227ea7\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    email:\n      title: Email\n      description: Email\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    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:\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      required:\n      - key\n      - id\n      - url\n      - title\n      - created_at\n      - verified\n      - read_only\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    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  examples:\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    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    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    enterprise-public-key-items:\n      value:\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        last_used: '2020-06-11T22:31:57Z'\n        user_id: 1\n        repository_id: 2\n      - key: 9Og8iYjAyymI9LvABpJerYrMxURPc8r+dB7TJyvv1234\n        id: 3\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        last_used: '2020-06-11T22:31:57Z'\n        user_id: 1\n        repository_id: 2\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://github.com/orgs/github/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    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        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    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    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    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-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    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    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    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    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    authorization-items:\n      value:\n      - id: 2\n        url: https://enterprise.octocat.com/api/v3/authorizations/2\n        app:\n          name: My personal access token\n          url: https://docs.github.com/enterprise/rest/reference/enterprise-admin#list-personal-access-tokens\n          client_id: '00000000000000000000'\n        token: ghp_16C7e42F292c6912E7710c838347Ae178B4a\n        hashed_token: 23cffb2fab1b0a62747863eba88cb9327e561f2f7a0c8661c0d9b83146cb8d45\n        token_last_eight: Ae178B4a\n        note: My personal access token\n        note_url:\n        created_at: '2019-04-24T21:49:02Z'\n        updated_at: '2019-04-24T21:49:02Z'\n        scopes:\n        - admin:business\n        - admin:gpg_key\n        - admin:org\n        - admin:org_hook\n        - admin:pre_receive_hook\n        - admin:public_key\n        - admin:repo_hook\n        - delete_repo\n        - gist\n        - notifications\n        - repo\n        - user\n        - write:discussion\n        fingerprint:\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    authorization:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        token: ghu_16C7e42F292c6912E7710c838347Ae178B4a\n        token_last_eight: Ae178B4a\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        expires_at: '2011-10-06T17:26:27Z'\n        fingerprint: jklmnop12345678\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    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    webhook-config:\n      value:\n        content_type: json\n        insecure_ssl: '0'\n        secret: \"********\"\n        url: https://example.com/webhook\n    hook-delivery-items:\n      value:\n      - id: 12345678\n        guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516\n        delivered_at: '2019-06-03T00:57:16Z'\n        redelivery: false\n        duration: 0.27\n        status: OK\n        status_code: 200\n        event: issues\n        action: opened\n        installation_id: 123\n        repository_id: 456\n      - id: 123456789\n        guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516\n        delivered_at: '2019-06-04T00:57:16Z'\n        redelivery: true\n        duration: 0.28\n        status: OK\n        status_code: 200\n        event: issues\n        action: opened\n        installation_id: 123\n        repository_id: 456\n    hook-delivery:\n      value:\n        id: 12345678\n        guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516\n        delivered_at: '2019-06-03T00:57:16Z'\n        redelivery: false\n        duration: 0.27\n        status: OK\n        status_code: 200\n        event: issues\n        action: opened\n        installation_id: 123\n        repository_id: 456\n        url: https://www.example.com\n        request:\n          headers:\n            X-GitHub-Delivery: 0b989ba4-242f-11e5-81e1-c7b6966d2516\n            X-Hub-Signature-256: sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e\n            Accept: \"*/*\"\n            X-GitHub-Hook-ID: '42'\n            User-Agent: GitHub-Hookshot/b8c71d8\n            X-GitHub-Event: issues\n            X-GitHub-Hook-Installation-Target-ID: '123'\n            X-GitHub-Hook-Installation-Target-Type: repository\n            content-type: application/json\n            X-Hub-Signature: sha1=a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n          payload:\n            action: opened\n            issue:\n              body: foo\n            repository:\n              id: 123\n        response:\n          headers:\n            Content-Type: text/html;charset=utf-8\n          payload: ok\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.yaml\n        has_multiple_single_files: true\n        single_file_paths:\n        - config.yml\n        - \".github/issue_TEMPLATE.md\"\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        suspended_at:\n        suspended_by:\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.yaml\n        has_multiple_single_files: true\n        single_file_paths:\n        - config.yml\n        - \".github/issue_TEMPLATE.md\"\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        suspended_at:\n        suspended_by:\n    installation-token:\n      value:\n        token: ghs_16C7e42F292c6912E7710c838347Ae178B4a\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          allow_auto_merge: false\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    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-with-user:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        - user\n        token: ghu_16C7e42F292c6912E7710c838347Ae178B4a\n        token_last_eight: Ae178B4a\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        expires_at: '2011-09-08T17:26:27Z'\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    scope-token:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes: []\n        token: ghu_16C7e42F292c6912E7710c838347Ae178B4a\n        token_last_eight: Ae178B4a\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        expires_at: '2011-09-08T17:26:27Z'\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          permissions:\n            metadata: read\n            issues: write\n            contents: read\n          repository_selection: selected\n          single_file_name: \".github/workflow.yml\"\n          repositories_url: https://api.github.com/user/repos\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          has_multiple_single_files: false\n          single_file_paths: []\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: ghu_16C7e42F292c6912E7710c838347Ae178B4a\n        token_last_eight: Ae178B4a\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        expires_at: '2011-10-06T17:26:27Z'\n        fingerprint: ''\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: ghu_16C7e42F292c6912E7710c838347Ae178B4a\n        token_last_eight: Ae178B4a\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        expires_at: '2011-10-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: ghu_16C7e42F292c6912E7710c838347Ae178B4a\n        token_last_eight: Ae178B4a\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        expires_at: '2012-10-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: ghu_16C7e42F292c6912E7710c838347Ae178B4a\n        token_last_eight: Ae178B4a\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        expires_at: '2011-10-06T17:26:27Z'\n        fingerprint: jklmnop12345678\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    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    announcement:\n      summary: Default response\n      value:\n        announcement: Very **important** announcement about _nothing_.\n        expires_at: '2021-01-01T00:00:00.000+00:00'\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    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    actions-enterprise-permissions:\n      value:\n        enabled_organizations: all\n        allowed_actions: selected\n        selected_actions_url: https://api.github.com/enterprises/2/actions/permissions/selected-actions\n    organization-targets:\n      value:\n        total_count: 1\n        organizations:\n        - login: octocat\n          id: 161335\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          url: https://api.github.com/orgs/octo-org\n          repos_url: https://api.github.com/orgs/octo-org/repos\n          events_url: https://api.github.com/orgs/octo-org/events\n          hooks_url: https://api.github.com/orgs/octo-org/hooks\n          issues_url: https://api.github.com/orgs/octo-org/issues\n          members_url: https://api.github.com/orgs/octo-org/members{/member}\n          public_members_url: https://api.github.com/orgs/octo-org/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n    selected-actions:\n      value:\n        github_owned_allowed: true\n        verified_allowed: false\n        patterns_allowed:\n        - monalisa/octocat@*\n        - docker/*\n    runner-groups-enterprise:\n      value:\n        total_count: 3\n        runner_groups:\n        - id: 1\n          name: Default\n          visibility: all\n          default: true\n          runners_url: https://api.github.com/enterprises/octo-corp/actions/runner_groups/1/runners\n          allows_public_repositories: false\n        - id: 2\n          name: octo-runner-group\n          visibility: selected\n          default: false\n          selected_organizations_url: https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/organizations\n          runners_url: https://api.github.com/enterprises/octo-corp/actions/runner_groups/2/runners\n          allows_public_repositories: true\n        - id: 3\n          name: expensive-hardware\n          visibility: private\n          default: false\n          runners_url: https://api.github.com/enterprises/octo-corp/actions/runner_groups/3/runners\n          allows_public_repositories: true\n    runner-group-enterprise:\n      value:\n        id: 2\n        name: octo-runner-group\n        visibility: selected\n        default: false\n        selected_organizations_url: https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\n        runners_url: https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\n        allows_public_repositories: false\n    runner-group-update-enterprise:\n      value:\n        id: 2\n        name: Expensive hardware runners\n        visibility: selected\n        default: false\n        selected_organizations_url: https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/organizations\n        runners_url: https://api.github.com/enterprises/octo-corp/actions/runner-groups/2/runners\n        allows_public_repositories: true\n    runner-paginated:\n      value:\n        total_count: 2\n        runners:\n        - id: 23\n          name: linux_runner\n          os: linux\n          status: online\n          busy: true\n          labels:\n          - id: 5\n            name: self-hosted\n            type: read-only\n          - id: 7\n            name: X64\n            type: read-only\n          - id: 11\n            name: Linux\n            type: read-only\n        - id: 24\n          name: mac_runner\n          os: macos\n          status: offline\n          busy: false\n          labels:\n          - id: 5\n            name: self-hosted\n            type: read-only\n          - id: 7\n            name: X64\n            type: read-only\n          - id: 20\n            name: macOS\n            type: read-only\n          - id: 21\n            name: no-gpu\n            type: custom\n    runner-application-items-airgap:\n      value:\n      - os: osx\n        architecture: x64\n        download_url: https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-osx-x64-2.277.1.tar.gz\n        filename: actions-runner-osx-x64-2.277.1.tar.gz\n        temp_download_token: eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\n        sha256_checksum: f1fa173889dc9036cd529417e652e1729e5a3f4d35ec0151806d7480fda6b89b\n      - os: linux\n        architecture: x64\n        download_url: https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-x64-2.277.1.tar.gz\n        filename: actions-runner-linux-x64-2.277.1.tar.gz\n        temp_download_token: eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\n        sha256_checksum: 02d710fc9e0008e641274bb7da7fde61f7c9aa1cbb541a2990d3450cc88f4e98\n      - os: linux\n        architecture: arm\n        download_url: https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm-2.277.1.tar.gz\n        filename: actions-runner-linux-arm-2.277.1.tar.gz\n        temp_download_token: eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIyYTEzZDRmZC01ZDhkLTRjNzgtYjg2MS0zYTMxZGQ3MmYzNjQiLCJzaWQiOiI0MzZiNTg3YS04ODMyLTRiMTMtOWM2Ny05OWRkMjA2ZTQzNmMiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MzE1NzEsImV4cCI6MTYxNzkzNTc3MX0.PMhU7-MOnZRDj5k5a4ieeFlQCmKPl2pQvpVRhGZq-9ByKF5s9G0rsnGBxDcolTYlbvEAmSSkeAEwF486F7P0kMVEb-GI14WbErqqMSyaPL81c3W7UHxMJLaSBnDs9ftHMv_IkJmRzaROS8q1ObzUW-ErlltxCdj2zF_5ruK9G2RR566AOAtiA3AHV6k7-FCY5--sDYJN_YXPgpwI0fPN1TM92fdPm93hJnoXuCJNpBYp1vl5W4gwGtU_Pa07ESdqqFN1YJJHUloedNhiIOczGfGVSapRc8vyGm9P_VCM_yKD8JI-MkOXl8JI5fCfhmjmKsw-vSAh9NW67RGvmehmpw\n        sha256_checksum: 2f2bda21e2fd8fed6938b33182a293f6b1f74e4c5d09acd6d9a0fe3f979f5c85\n      - os: win\n        architecture: x64\n        download_url: https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-win-x64-2.277.1.zip\n        filename: actions-runner-win-x64-2.277.1.zip\n        temp_download_token: eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\n        sha256_checksum: 7215c75a462eeb6a839fa8ed298d79f620617d44d47d37c583114fc3f3b27b30\n      - os: linux\n        architecture: arm64\n        download_url: https://github.com/actions/runner/releases/download/v2.277.1/actions-runner-linux-arm64-2.277.1.tar.gz\n        filename: actions-runner-linux-arm64-2.277.1.tar.gz\n        temp_download_token: eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkJmSjdCUXpLdXhjWDc4WnJ5NUxnUW53ZFRrMCJ9.eyJuYW1laWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJzY3AiOiJBY3Rpb25zUnVudGltZS5QYWNrYWdlRG93bmxvYWQiLCJJZGVudGl0eVR5cGVDbGFpbSI6IlN5c3RlbTpTZXJ2aWNlSWRlbnRpdHkiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiJERERERERERC1ERERELUREREQtRERERC1EREREREREREREREQiLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3ByaW1hcnlzaWQiOiJkZGRkZGRkZC1kZGRkLWRkZGQtZGRkZC1kZGRkZGRkZGRkZGQiLCJhdWkiOiIwZTZkODAxYi02NzVlLTQ1YzAtOWM4NC1jYTkzNjdlZjc1NjciLCJzaWQiOiI4ZTE5MDliZC1kYzU1LTQ2MWYtOTk2Mi1hZTI0OTEzNzU4OWIiLCJpc3MiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJhdWQiOiJ2c3Rva2VuLmNvZGVkZXYubXMiLCJuYmYiOjE2MTc5MDQxNzUsImV4cCI6MTYxNzkwODM3NX0.YNsRXL9pBuIfLVndnyVQOpru77Br8hgYIX7LPsOaMfKk4K88YG89a2VIXUWPyHRiOaC-4J0lIPei8ujezEtnMfNZCwHdWq0Niiy-2-ywcfGPmcz-RHz_ZglkPFbzKaiZWJcFKCGHCP0Ta3kdXumJQqiVJEIyppxIY-caR_Wsw2L4BZHOefJq-odsJ0guPgm9fVuU9FxVRkucho1UH_bzt0tAMl1gEWOLBLZ88U9LKCzHWaxheFeBV4DTt1lAcSm213gKP1eMbgAGn5heWhR4RMRBzZc2HO3Lf1syu4E8fW8a-esRAxEYPfqPHwN9LNj2jaU3D3nPwa8lHQLLtA1PNA\n        sha256_checksum: a6aa6dd0ba217118ef2b4ea24e9e0a85b02b13c38052a5de0776d6ced3a79c64\n    authentication-token:\n      value:\n        token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6\n        expires_at: '2020-01-22T12:13:35.123-08:00'\n    authentication-token-2:\n      value:\n        token: AABF3JGZDX3P5PMEXLND6TS6FCWO6\n        expires_at: '2020-01-29T12:13:35.123-08:00'\n    runner:\n      value:\n        id: 23\n        name: MBP\n        os: macos\n        status: online\n        busy: true\n        labels:\n        - id: 5\n          name: self-hosted\n          type: read-only\n        - id: 7\n          name: X64\n          type: read-only\n        - id: 20\n          name: macOS\n          type: read-only\n        - id: 21\n          name: no-gpu\n          type: custom\n    audit-log:\n      value:\n      - actor_ip: 88.123.45.123\n        from: pull_requests#merge\n        device_cookie:\n        actor: mona-admin\n        actor_id: 7\n        repo: octo-org/octo-repo\n        repo_id: 17\n        business: github\n        business_id: 1\n        org: octo-org\n        org_id: 8\n        action: pull_request.merge\n        \"@timestamp\": 1635940599755\n        created_at: 1635940599755\n        operation_type: modify\n        actor_location:\n          country_code: GB\n          country_name: United Kingdom\n          region: ENG\n          region_name: England\n          city: Louth\n          postal_code: LN11\n          location:\n            lat: 53.4457\n            lon: 0.141\n        data:\n          user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\n          method: POST\n          request_id: e4dabc4d-ba16-4bca-1234-649be7ae1188\n          server_id: 5d17aab5-fd9f-abcd-a820-16bed246441b\n          request_category: other\n          controller_action: merge\n          url: https://example.com/octo-org/octo-repo/pull/1/merge\n          client_id: 322299977.1635936\n          referrer: https://example.com/octo-org/octo-repo/pull/1\n          actor_session: 1\n          pull_request_id: 1\n          category_type: Resource Management\n      - actor_ip: 88.123.45.123\n        from: pull_request_review_events#create\n        device_cookie:\n        actor: mona-admin\n        actor_id: 7\n        business_id: 1\n        org_id: 8\n        action: pull_request_review.submit\n        \"@timestamp\": 1635940593079\n        created_at: 1635940593079\n        operation_type: modify\n        actor_location:\n          country_code: GB\n          country_name: United Kingdom\n          region: ENG\n          region_name: England\n          city: Louth\n          postal_code: LN11\n          location:\n            lat: 53.4457\n            lon: 0.141\n        data:\n          user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\n          method: PUT\n          request_id: c0f63bb7-17b6-4796-940c-12345c5a581b\n          server_id: 2abc1234-f651-43e3-9696-e942ad5f8c89\n          request_category: other\n          controller_action: create\n          url: https://example.com/octo-org/octo-repo/pull/1/reviews\n          client_id: 322299977.1635936\n          referrer: https://example.com/octo-org/octo-repo/pull/1/files\n          actor_session: 1\n          spammy: false\n          pull_request_id: 1\n          body:\n          allowed: true\n          id: 1\n          state: 40\n          issue_id: 1\n          review_id: 1\n          category_type: Resource Management\n      - actor_ip: 88.123.45.123\n        from: pull_requests#create\n        device_cookie:\n        actor: mona\n        actor_id: 9\n        user_id: 9\n        repo: octo-org/octo-repo\n        repo_id: 17\n        business: github\n        business_id: 1\n        org: octo-org\n        org_id: 8\n        action: pull_request.create\n        \"@timestamp\": 1635940554161\n        created_at: 1635940554161\n        operation_type: create\n        actor_location:\n          country_code: GB\n          country_name: United Kingdom\n          region: ENG\n          region_name: England\n          city: Louth\n          postal_code: LN11\n          location:\n            lat: 53.4457\n            lon: 0.141\n        data:\n          user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ...\n          method: POST\n          request_id: 2773abeb-477f-4ebf-a017-f8e8a206c305\n          server_id: 796e3115-4ce8-4606-8fd0-99ea57a2e12b\n          request_category: other\n          controller_action: create\n          url: https://example.com/octo-org/octo-repo/pull/create?base=octo-org%3Amain&head=mona%3Apatch-1\n          client_id: 386351111.163594\n          referrer: https://example.com/octo-org/octo-repo/compare/main...mona:patch-1\n          actor_session: 2\n          pull_request_id: 1\n          category_type: Resource Management\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    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:\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-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-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-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-fork-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: 1\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    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    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    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          allow_auto_merge: false\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    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          allow_auto_merge: false\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    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    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    api-overview:\n      value:\n        verifiable_password_authentication: true\n        packages:\n        - 192.30.252.0/22\n        dependabot:\n        - 54.158.161.132\n        installed_version: 3.3.0\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        subscription_url: https://api.github.com/notifications/threads/1/subscription\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        subscription_url: https://api.github.com/notifications/threads/1/subscription\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    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          filled_seats: 4\n          seats: 5\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        members_can_create_pages: true\n        members_can_fork_private_repositories: false\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        members_can_create_pages: true\n        members_can_create_public_pages: true\n        members_can_create_private_pages: true\n        members_can_fork_private_repositories: false\n        updated_at: '2014-03-03T18:58:10Z'\n    actions-organization-permissions:\n      value:\n        enabled_repositories: all\n        allowed_actions: selected\n        selected_actions_url: https://api.github.com/organizations/42/actions/permissions/selected-actions\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          allow_auto_merge: false\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    runner-groups-org:\n      value:\n        total_count: 3\n        runner_groups:\n        - id: 1\n          name: Default\n          visibility: all\n          default: true\n          runners_url: https://api.github.com/orgs/octo-org/actions/runner_groups/1/runners\n          inherited: false\n          allows_public_repositories: true\n        - id: 2\n          name: octo-runner-group\n          visibility: selected\n          default: false\n          selected_repositories_url: https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\n          runners_url: https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\n          inherited: true\n          allows_public_repositories: true\n        - id: 3\n          name: expensive-hardware\n          visibility: private\n          default: false\n          runners_url: https://api.github.com/orgs/octo-org/actions/runner_groups/3/runners\n          inherited: false\n          allows_public_repositories: true\n    runner-group:\n      value:\n        id: 2\n        name: octo-runner-group\n        visibility: selected\n        default: false\n        selected_repositories_url: https://api.github.com/orgs/octo-org/actions/runner-groups/2/repositories\n        runners_url: https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\n        inherited: false\n        allows_public_repositories: true\n    runner-group-item:\n      value:\n        id: 2\n        name: octo-runner-group\n        visibility: selected\n        default: false\n        selected_repositories_url: https://api.github.com/orgs/octo-org/actions/runner_groups/2/repositories\n        runners_url: https://api.github.com/orgs/octo-org/actions/runner_groups/2/runners\n        inherited: false\n        allows_public_repositories: true\n    minimal-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          template_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            organization:\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            allow_auto_merge: false\n            delete_branch_on_merge: true\n            allow_merge_commit: true\n            subscribers_count: 42\n            network_count: 0\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            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n          forks: 1\n          open_issues: 1\n          watchers: 1\n    organization-actions-secret-paginated:\n      value:\n        total_count: 3\n        secrets:\n        - name: GIST_ID\n          created_at: '2019-08-10T14:59:22Z'\n          updated_at: '2020-01-10T14:59:22Z'\n          visibility: private\n        - name: DEPLOY_TOKEN\n          created_at: '2019-08-10T14:59:22Z'\n          updated_at: '2020-01-10T14:59:22Z'\n          visibility: all\n        - name: GH_TOKEN\n          created_at: '2019-08-10T14:59:22Z'\n          updated_at: '2020-01-10T14:59:22Z'\n          visibility: selected\n          selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\n    actions-public-key:\n      value:\n        key_id: '012345678912345678'\n        key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\n    organization-actions-secret:\n      value:\n        name: GH_TOKEN\n        created_at: '2019-08-10T14:59:22Z'\n        updated_at: '2020-01-10T14:59:22Z'\n        visibility: selected\n        selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories\n    public-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          hooks_url: http://api.github.com/repos/octocat/Hello-World/hooks\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        deliveries_url: https://api.github.com/orgs/octocat/hooks/1/deliveries\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:\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        deliveries_url: https://api.github.com/orgs/octocat/hooks/1/deliveries\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        deliveries_url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\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    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: config.yml\n        has_multiple_single_files: true\n        single_file_paths:\n        - config.yml\n        - \".github/issue_TEMPLATE.md\"\n        app_slug: github-actions\n        suspended_at:\n        suspended_by:\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: config.yml\n          has_multiple_single_files: true\n          single_file_paths:\n          - config.yml\n          - \".github/issue_TEMPLATE.md\"\n          app_slug: github-actions\n          suspended_at:\n          suspended_by:\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    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-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    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    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    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: 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        template_repository:\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        organization:\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        allow_auto_merge: false\n        delete_branch_on_merge: true\n        allow_merge_commit: true\n        subscribers_count: 42\n        network_count: 0\n    organization-secret-scanning-alert-list:\n      value:\n      - number: 2\n        created_at: '2020-11-06T18:48:51Z'\n        url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\n        html_url: https://github.com/owner/private-repo/security/secret-scanning/2\n        locations_url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\n        state: resolved\n        resolution: false_positive\n        resolved_at: '2020-11-07T02:47:13Z'\n        resolved_by:\n          login: monalisa\n          id: 2\n          node_id: MDQ6VXNlcjI=\n          avatar_url: https://alambic.github.com/avatars/u/2?\n          gravatar_id: ''\n          url: https://api.github.com/users/monalisa\n          html_url: https://github.com/monalisa\n          followers_url: https://api.github.com/users/monalisa/followers\n          following_url: https://api.github.com/users/monalisa/following{/other_user}\n          gists_url: https://api.github.com/users/monalisa/gists{/gist_id}\n          starred_url: https://api.github.com/users/monalisa/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/monalisa/subscriptions\n          organizations_url: https://api.github.com/users/monalisa/orgs\n          repos_url: https://api.github.com/users/monalisa/repos\n          events_url: https://api.github.com/users/monalisa/events{/privacy}\n          received_events_url: https://api.github.com/users/monalisa/received_events\n          type: User\n          site_admin: true\n        secret_type: adafruit_io_key\n        secret: aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\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: 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          template_repository:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World-Template\n            full_name: octocat/Hello-World-Template\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-Template\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World-Template\n            archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World-Template.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World-Template.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World-Template.git\n            mirror_url: git:git.example.com/octocat/Hello-World-Template\n            hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World-Template\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            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            allow_auto_merge: false\n            delete_branch_on_merge: true\n            allow_merge_commit: true\n            subscribers_count: 42\n            network_count: 0\n      - number: 1\n        created_at: '2020-11-06T18:18:30Z'\n        url: https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\n        html_url: https://github.com/owner/repo/security/secret-scanning/1\n        locations_url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\n        state: open\n        resolution:\n        resolved_at:\n        resolved_by:\n        secret_type: mailchimp_api_key\n        secret: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\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: 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          template_repository:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World-Template\n            full_name: octocat/Hello-World-Template\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-Template\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World-Template\n            archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World-Template.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World-Template.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World-Template.git\n            mirror_url: git:git.example.com/octocat/Hello-World-Template\n            hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World-Template\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            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            allow_auto_merge: false\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://github.com/orgs/github/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    team-full:\n      value:\n        id: 1\n        node_id: MDQ6VGVhbTE=\n        url: https://api.github.com/teams/1\n        html_url: https://github.com/orgs/github/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        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          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        ldap_dn: uid=asdf,ou=users,dc=github,dc=com\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-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-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-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    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    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-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-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    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-repository-alternative-response-with-repository-permissions:\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        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: 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          maintain: false\n          push: false\n          triage: false\n          pull: true\n        allow_rebase_merge: true\n        template_repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World-Template\n          full_name: octocat/Hello-World-Template\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-Template\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World-Template\n          archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World-Template.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World-Template.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World-Template.git\n          mirror_url: git:git.example.com/octocat/Hello-World-Template\n          hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World-Template\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            pull: true\n            triage: false\n            push: false\n            maintain: false\n            admin: false\n          allow_rebase_merge: true\n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        allow_squash_merge: true\n        allow_auto_merge: false\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    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://github.com/orgs/github/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    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-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-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-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-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    rate-limit-overview:\n      value:\n        resources:\n          core:\n            limit: 5000\n            remaining: 4999\n            reset: 1372700873\n            used: 1\n          search:\n            limit: 30\n            remaining: 18\n            reset: 1372697452\n            used: 12\n          graphql:\n            limit: 5000\n            remaining: 4993\n            reset: 1372700389\n            used: 7\n          integration_manifest:\n            limit: 5000\n            remaining: 4999\n            reset: 1551806725\n            used: 1\n          code_scanning_upload:\n            limit: 500\n            remaining: 499\n            reset: 1551806725\n            used: 1\n        rate:\n          limit: 5000\n          remaining: 4999\n          reset: 1372700873\n          used: 1\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: 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          pull: true\n          push: false\n          admin: false\n        allow_rebase_merge: true\n        template_repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World-Template\n          full_name: octocat/Hello-World-Template\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-Template\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World-Template\n          archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World-Template.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World-Template.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World-Template.git\n          mirror_url: git:git.example.com/octocat/Hello-World-Template\n          hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World-Template\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          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        allow_squash_merge: true\n        allow_auto_merge: false\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          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\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          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\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:\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: 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          pull: true\n          push: false\n          admin: false\n        allow_rebase_merge: true\n        template_repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World-Template\n          full_name: octocat/Hello-World-Template\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-Template\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World-Template\n          archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World-Template.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World-Template.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World-Template.git\n          mirror_url: git:git.example.com/octocat/Hello-World-Template\n          hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World-Template\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          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        allow_squash_merge: true\n        allow_auto_merge: false\n        delete_branch_on_merge: true\n        allow_merge_commit: true\n        allow_forking: 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          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\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          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\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    artifact-paginated:\n      value:\n        total_count: 2\n        artifacts:\n        - id: 11\n          node_id: MDg6QXJ0aWZhY3QxMQ==\n          name: Rails\n          size_in_bytes: 556\n          url: https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\n          archive_download_url: https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\n          expired: false\n          created_at: '2020-01-10T14:59:22Z'\n          expires_at: '2020-03-21T14:59:22Z'\n          updated_at: '2020-02-21T14:59:22Z'\n        - id: 13\n          node_id: MDg6QXJ0aWZhY3QxMw==\n          name: ''\n          size_in_bytes: 453\n          url: https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13\n          archive_download_url: https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/13/zip\n          expired: false\n          created_at: '2020-01-10T14:59:22Z'\n          expires_at: '2020-03-21T14:59:22Z'\n          updated_at: '2020-02-21T14:59:22Z'\n    artifact:\n      value:\n        id: 11\n        node_id: MDg6QXJ0aWZhY3QxMQ==\n        name: Rails\n        size_in_bytes: 556\n        url: https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11\n        archive_download_url: https://api.github.com/repos/octo-org/octo-docs/actions/artifacts/11/zip\n        expired: false\n        created_at: '2020-01-10T14:59:22Z'\n        expires_at: '2020-01-21T14:59:22Z'\n        updated_at: '2020-01-21T14:59:22Z'\n    job:\n      value:\n        id: 399444496\n        run_id: 29679449\n        run_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\n        node_id: MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\n        head_sha: f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\n        url: https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\n        html_url: https://github.com/octo-org/octo-repo/runs/399444496\n        status: completed\n        conclusion: success\n        started_at: '2020-01-20T17:42:40Z'\n        completed_at: '2020-01-20T17:44:39Z'\n        name: build\n        steps:\n        - name: Set up job\n          status: completed\n          conclusion: success\n          number: 1\n          started_at: '2020-01-20T09:42:40.000-08:00'\n          completed_at: '2020-01-20T09:42:41.000-08:00'\n        - name: Run actions/checkout@v2\n          status: completed\n          conclusion: success\n          number: 2\n          started_at: '2020-01-20T09:42:41.000-08:00'\n          completed_at: '2020-01-20T09:42:45.000-08:00'\n        - name: Set up Ruby\n          status: completed\n          conclusion: success\n          number: 3\n          started_at: '2020-01-20T09:42:45.000-08:00'\n          completed_at: '2020-01-20T09:42:45.000-08:00'\n        - name: Run actions/cache@v2\n          status: completed\n          conclusion: success\n          number: 4\n          started_at: '2020-01-20T09:42:45.000-08:00'\n          completed_at: '2020-01-20T09:42:48.000-08:00'\n        - name: Install Bundler\n          status: completed\n          conclusion: success\n          number: 5\n          started_at: '2020-01-20T09:42:48.000-08:00'\n          completed_at: '2020-01-20T09:42:52.000-08:00'\n        - name: Install Gems\n          status: completed\n          conclusion: success\n          number: 6\n          started_at: '2020-01-20T09:42:52.000-08:00'\n          completed_at: '2020-01-20T09:42:53.000-08:00'\n        - name: Run Tests\n          status: completed\n          conclusion: success\n          number: 7\n          started_at: '2020-01-20T09:42:53.000-08:00'\n          completed_at: '2020-01-20T09:42:59.000-08:00'\n        - name: Deploy to Heroku\n          status: completed\n          conclusion: success\n          number: 8\n          started_at: '2020-01-20T09:42:59.000-08:00'\n          completed_at: '2020-01-20T09:44:39.000-08:00'\n        - name: Post actions/cache@v2\n          status: completed\n          conclusion: success\n          number: 16\n          started_at: '2020-01-20T09:44:39.000-08:00'\n          completed_at: '2020-01-20T09:44:39.000-08:00'\n        - name: Complete job\n          status: completed\n          conclusion: success\n          number: 17\n          started_at: '2020-01-20T09:44:39.000-08:00'\n          completed_at: '2020-01-20T09:44:39.000-08:00'\n        check_run_url: https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\n        labels:\n        - self-hosted\n        - foo\n        - bar\n        runner_id: 1\n        runner_name: my runner\n        runner_group_id: 2\n        runner_group_name: my runner group\n    actions-repository-permissions:\n      value:\n        enabled: true\n        allowed_actions: selected\n        selected_actions_url: https://api.github.com/repositories/42/actions/permissions/selected-actions\n    workflow-run-paginated:\n      value:\n        total_count: 1\n        workflow_runs:\n        - id: 30433642\n          name: Build\n          node_id: MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\n          head_branch: master\n          head_sha: acb5820ced9479c074f688cc328bf03f341a511d\n          run_number: 562\n          event: push\n          status: queued\n          conclusion:\n          workflow_id: 159038\n          url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\n          html_url: https://github.com/octo-org/octo-repo/actions/runs/30433642\n          pull_requests: []\n          created_at: '2020-01-22T19:33:08Z'\n          updated_at: '2020-01-22T19:33:08Z'\n          jobs_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\n          logs_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\n          check_suite_url: https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\n          artifacts_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\n          cancel_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\n          rerun_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\n          workflow_url: https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\n          head_commit:\n            id: acb5820ced9479c074f688cc328bf03f341a511d\n            tree_id: d23f6eedb1e1b9610bbc754ddb5197bfe7271223\n            message: Create linter.yaml\n            timestamp: '2020-01-22T19:33:05Z'\n            author:\n              name: Octo Cat\n              email: octocat@github.com\n            committer:\n              name: GitHub\n              email: noreply@github.com\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          head_repository:\n            id: 217723378\n            node_id: MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\n            name: octo-repo\n            full_name: octo-org/octo-repo\n            private: true\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            html_url: https://github.com/octo-org/octo-repo\n            description:\n            fork: false\n            url: https://api.github.com/repos/octo-org/octo-repo\n            forks_url: https://api.github.com/repos/octo-org/octo-repo/forks\n            keys_url: https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\n            collaborators_url: https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\n            teams_url: https://api.github.com/repos/octo-org/octo-repo/teams\n            hooks_url: https://api.github.com/repos/octo-org/octo-repo/hooks\n            issue_events_url: https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\n            events_url: https://api.github.com/repos/octo-org/octo-repo/events\n            assignees_url: https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\n            branches_url: https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\n            tags_url: https://api.github.com/repos/octo-org/octo-repo/tags\n            blobs_url: https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\n            git_tags_url: https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\n            git_refs_url: https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\n            trees_url: https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\n            statuses_url: https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\n            languages_url: https://api.github.com/repos/octo-org/octo-repo/languages\n            stargazers_url: https://api.github.com/repos/octo-org/octo-repo/stargazers\n            contributors_url: https://api.github.com/repos/octo-org/octo-repo/contributors\n            subscribers_url: https://api.github.com/repos/octo-org/octo-repo/subscribers\n            subscription_url: https://api.github.com/repos/octo-org/octo-repo/subscription\n            commits_url: https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\n            git_commits_url: https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\n            comments_url: https://api.github.com/repos/octo-org/octo-repo/comments{/number}\n            issue_comment_url: https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\n            contents_url: https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\n            compare_url: https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\n            merges_url: https://api.github.com/repos/octo-org/octo-repo/merges\n            archive_url: https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\n            downloads_url: https://api.github.com/repos/octo-org/octo-repo/downloads\n            issues_url: https://api.github.com/repos/octo-org/octo-repo/issues{/number}\n            pulls_url: https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\n            milestones_url: https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\n            notifications_url: https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\n            labels_url: https://api.github.com/repos/octo-org/octo-repo/labels{/name}\n            releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id}\n            deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments\n    workflow-run:\n      value:\n        id: 30433642\n        name: Build\n        node_id: MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==\n        check_suite_id: 42\n        check_suite_node_id: MDEwOkNoZWNrU3VpdGU0Mg==\n        head_branch: master\n        head_sha: acb5820ced9479c074f688cc328bf03f341a511d\n        run_number: 562\n        event: push\n        status: queued\n        conclusion:\n        workflow_id: 159038\n        url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642\n        html_url: https://github.com/octo-org/octo-repo/actions/runs/30433642\n        pull_requests: []\n        created_at: '2020-01-22T19:33:08Z'\n        updated_at: '2020-01-22T19:33:08Z'\n        jobs_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs\n        logs_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs\n        check_suite_url: https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374\n        artifacts_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts\n        cancel_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel\n        rerun_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun\n        workflow_url: https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038\n        head_commit:\n          id: acb5820ced9479c074f688cc328bf03f341a511d\n          tree_id: d23f6eedb1e1b9610bbc754ddb5197bfe7271223\n          message: Create linter.yaml\n          timestamp: '2020-01-22T19:33:05Z'\n          author:\n            name: Octo Cat\n            email: octocat@github.com\n          committer:\n            name: GitHub\n            email: noreply@github.com\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        head_repository:\n          id: 217723378\n          node_id: MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=\n          name: octo-repo\n          full_name: octo-org/octo-repo\n          private: true\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          html_url: https://github.com/octo-org/octo-repo\n          description:\n          fork: false\n          url: https://api.github.com/repos/octo-org/octo-repo\n          forks_url: https://api.github.com/repos/octo-org/octo-repo/forks\n          keys_url: https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}\n          collaborators_url: https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}\n          teams_url: https://api.github.com/repos/octo-org/octo-repo/teams\n          hooks_url: https://api.github.com/repos/octo-org/octo-repo/hooks\n          issue_events_url: https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}\n          events_url: https://api.github.com/repos/octo-org/octo-repo/events\n          assignees_url: https://api.github.com/repos/octo-org/octo-repo/assignees{/user}\n          branches_url: https://api.github.com/repos/octo-org/octo-repo/branches{/branch}\n          tags_url: https://api.github.com/repos/octo-org/octo-repo/tags\n          blobs_url: https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}\n          git_tags_url: https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}\n          git_refs_url: https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}\n          trees_url: https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}\n          statuses_url: https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}\n          languages_url: https://api.github.com/repos/octo-org/octo-repo/languages\n          stargazers_url: https://api.github.com/repos/octo-org/octo-repo/stargazers\n          contributors_url: https://api.github.com/repos/octo-org/octo-repo/contributors\n          subscribers_url: https://api.github.com/repos/octo-org/octo-repo/subscribers\n          subscription_url: https://api.github.com/repos/octo-org/octo-repo/subscription\n          commits_url: https://api.github.com/repos/octo-org/octo-repo/commits{/sha}\n          git_commits_url: https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}\n          comments_url: https://api.github.com/repos/octo-org/octo-repo/comments{/number}\n          issue_comment_url: https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}\n          contents_url: https://api.github.com/repos/octo-org/octo-repo/contents/{+path}\n          compare_url: https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}\n          merges_url: https://api.github.com/repos/octo-org/octo-repo/merges\n          archive_url: https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}\n          downloads_url: https://api.github.com/repos/octo-org/octo-repo/downloads\n          issues_url: https://api.github.com/repos/octo-org/octo-repo/issues{/number}\n          pulls_url: https://api.github.com/repos/octo-org/octo-repo/pulls{/number}\n          milestones_url: https://api.github.com/repos/octo-org/octo-repo/milestones{/number}\n          notifications_url: https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}\n          labels_url: https://api.github.com/repos/octo-org/octo-repo/labels{/name}\n          releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id}\n          deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments\n    environment-approvals-items:\n      value:\n      - state: approved\n        comment: Ship it!\n        environments:\n        - id: 161088068\n          node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4\n          name: staging\n          url: https://api.github.com/repos/github/hello-world/environments/staging\n          html_url: https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\n          created_at: '2020-11-23T22:00:40Z'\n          updated_at: '2020-11-23T22:00:40Z'\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    job-paginated:\n      value:\n        total_count: 1\n        jobs:\n        - id: 399444496\n          run_id: 29679449\n          run_url: https://api.github.com/repos/octo-org/octo-repo/actions/runs/29679449\n          node_id: MDEyOldvcmtmbG93IEpvYjM5OTQ0NDQ5Ng==\n          head_sha: f83a356604ae3c5d03e1b46ef4d1ca77d64a90b0\n          url: https://api.github.com/repos/octo-org/octo-repo/actions/jobs/399444496\n          html_url: https://github.com/octo-org/octo-repo/runs/399444496\n          status: completed\n          conclusion: success\n          started_at: '2020-01-20T17:42:40Z'\n          completed_at: '2020-01-20T17:44:39Z'\n          name: build\n          steps:\n          - name: Set up job\n            status: completed\n            conclusion: success\n            number: 1\n            started_at: '2020-01-20T09:42:40.000-08:00'\n            completed_at: '2020-01-20T09:42:41.000-08:00'\n          - name: Run actions/checkout@v2\n            status: completed\n            conclusion: success\n            number: 2\n            started_at: '2020-01-20T09:42:41.000-08:00'\n            completed_at: '2020-01-20T09:42:45.000-08:00'\n          - name: Set up Ruby\n            status: completed\n            conclusion: success\n            number: 3\n            started_at: '2020-01-20T09:42:45.000-08:00'\n            completed_at: '2020-01-20T09:42:45.000-08:00'\n          - name: Run actions/cache@v2\n            status: completed\n            conclusion: success\n            number: 4\n            started_at: '2020-01-20T09:42:45.000-08:00'\n            completed_at: '2020-01-20T09:42:48.000-08:00'\n          - name: Install Bundler\n            status: completed\n            conclusion: success\n            number: 5\n            started_at: '2020-01-20T09:42:48.000-08:00'\n            completed_at: '2020-01-20T09:42:52.000-08:00'\n          - name: Install Gems\n            status: completed\n            conclusion: success\n            number: 6\n            started_at: '2020-01-20T09:42:52.000-08:00'\n            completed_at: '2020-01-20T09:42:53.000-08:00'\n          - name: Run Tests\n            status: completed\n            conclusion: success\n            number: 7\n            started_at: '2020-01-20T09:42:53.000-08:00'\n            completed_at: '2020-01-20T09:42:59.000-08:00'\n          - name: Deploy to Heroku\n            status: completed\n            conclusion: success\n            number: 8\n            started_at: '2020-01-20T09:42:59.000-08:00'\n            completed_at: '2020-01-20T09:44:39.000-08:00'\n          - name: Post actions/cache@v2\n            status: completed\n            conclusion: success\n            number: 16\n            started_at: '2020-01-20T09:44:39.000-08:00'\n            completed_at: '2020-01-20T09:44:39.000-08:00'\n          - name: Complete job\n            status: completed\n            conclusion: success\n            number: 17\n            started_at: '2020-01-20T09:44:39.000-08:00'\n            completed_at: '2020-01-20T09:44:39.000-08:00'\n          check_run_url: https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496\n          labels:\n          - self-hosted\n          - foo\n          - bar\n          runner_id: 1\n          runner_name: my runner\n          runner_group_id: 2\n          runner_group_name: my runner group\n    pending-deployment-items:\n      value:\n      - environment:\n          id: 161088068\n          node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4\n          name: staging\n          url: https://api.github.com/repos/github/hello-world/environments/staging\n          html_url: https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\n        wait_timer: 30\n        wait_timer_started_at: '2020-11-23T22:00:40Z'\n        current_user_can_approve: true\n        reviewers:\n        - type: User\n          reviewer:\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        - type: Team\n          reviewer:\n            id: 1\n            node_id: MDQ6VGVhbTE=\n            url: https://api.github.com/teams/1\n            html_url: https://github.com/orgs/github/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    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    actions-secret-paginated:\n      value:\n        total_count: 2\n        secrets:\n        - name: GH_TOKEN\n          created_at: '2019-08-10T14:59:22Z'\n          updated_at: '2020-01-10T14:59:22Z'\n        - name: GIST_ID\n          created_at: '2020-01-10T10:59:22Z'\n          updated_at: '2020-01-11T11:59:22Z'\n    actions-secret:\n      value:\n        name: GH_TOKEN\n        created_at: '2019-08-10T14:59:22Z'\n        updated_at: '2020-01-10T14:59:22Z'\n    workflow-paginated:\n      value:\n        total_count: 2\n        workflows:\n        - id: 161335\n          node_id: MDg6V29ya2Zsb3cxNjEzMzU=\n          name: CI\n          path: \".github/workflows/blank.yaml\"\n          state: active\n          created_at: '2020-01-08T23:48:37.000-08:00'\n          updated_at: '2020-01-08T23:50:21.000-08:00'\n          url: https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\n          html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\n          badge_url: https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\n        - id: 269289\n          node_id: MDE4OldvcmtmbG93IFNlY29uZGFyeTI2OTI4OQ==\n          name: Linter\n          path: \".github/workflows/linter.yaml\"\n          state: active\n          created_at: '2020-01-08T23:48:37.000-08:00'\n          updated_at: '2020-01-08T23:50:21.000-08:00'\n          url: https://api.github.com/repos/octo-org/octo-repo/actions/workflows/269289\n          html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289\n          badge_url: https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg\n    workflow:\n      value:\n        id: 161335\n        node_id: MDg6V29ya2Zsb3cxNjEzMzU=\n        name: CI\n        path: \".github/workflows/blank.yaml\"\n        state: active\n        created_at: '2020-01-08T23:48:37.000-08:00'\n        updated_at: '2020-01-08T23:50:21.000-08:00'\n        url: https://api.github.com/repos/octo-org/octo-repo/actions/workflows/161335\n        html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/161335\n        badge_url: https://github.com/octo-org/octo-repo/workflows/CI/badge.svg\n    autolink-items:\n      value:\n      - id: 1\n        key_prefix: TICKET-\n        url_template: https://example.com/TICKET?query=<num>\n    autolink:\n      value:\n        id: 1\n        key_prefix: TICKET-\n        url_template: https://example.com/TICKET?query=<num>\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          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    branch-protection:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection\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://github.com/orgs/github/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://github.com/orgs/github/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        required_conversation_resolution:\n          enabled: true\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    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://github.com/orgs/github/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    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    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    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://github.com/orgs/github/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    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    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          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    check-run-example-of-completed-conclusion:\n      summary: Response for 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    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-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:\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:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World-Template\n            full_name: octocat/Hello-World-Template\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-Template\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World-Template\n            archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World-Template.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World-Template.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World-Template.git\n            mirror_url: git:git.example.com/octocat/Hello-World-Template\n            hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World-Template\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            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            allow_auto_merge: false\n            delete_branch_on_merge: true\n            allow_merge_commit: true\n            subscribers_count: 42\n            network_count: 0\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: 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          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: 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          template_repository:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World-Template\n            full_name: octocat/Hello-World-Template\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-Template\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World-Template\n            archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World-Template.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World-Template.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World-Template.git\n            mirror_url: git:git.example.com/octocat/Hello-World-Template\n            hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World-Template\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            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            allow_auto_merge: false\n            delete_branch_on_merge: true\n            allow_merge_commit: true\n            subscribers_count: 42\n            network_count: 0\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    code-scanning-alert-items:\n      value:\n      - number: 4\n        created_at: '2020-02-13T12:29:18Z'\n        url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4\n        html_url: https://github.com/octocat/hello-world/code-scanning/4\n        state: open\n        dismissed_by:\n        dismissed_at:\n        dismissed_reason:\n        rule:\n          id: js/zipslip\n          severity: error\n          description: Arbitrary file write during zip extraction\n          name: js/zipslip\n        tool:\n          name: CodeQL\n          guid:\n          version: 2.4.0\n        most_recent_instance:\n          ref: refs/heads/main\n          analysis_key: \".github/workflows/codeql-analysis.yml:CodeQL-Build\"\n          environment: \"{}\"\n          state: open\n          commit_sha: 39406e42cb832f683daa691dd652a8dc36ee8930\n          message:\n            text: This path depends on a user-provided value.\n          location:\n            path: spec-main/api-session-spec.ts\n            start_line: 917\n            end_line: 917\n            start_column: 7\n            end_column: 18\n          classifications:\n          - test\n        instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/4/instances\n      - number: 3\n        created_at: '2020-02-13T12:29:18Z'\n        url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3\n        html_url: https://github.com/octocat/hello-world/code-scanning/3\n        state: dismissed\n        dismissed_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        dismissed_at: '2020-02-14T12:29:18Z'\n        dismissed_reason: false positive\n        rule:\n          id: js/zipslip\n          severity: error\n          description: Arbitrary file write during zip extraction\n          name: js/zipslip\n        tool:\n          name: CodeQL\n          guid:\n          version: 2.4.0\n        most_recent_instance:\n          ref: refs/heads/main\n          analysis_key: \".github/workflows/codeql-analysis.yml:CodeQL-Build\"\n          environment: \"{}\"\n          state: open\n          commit_sha: 39406e42cb832f683daa691dd652a8dc36ee8930\n          message:\n            text: This path depends on a user-provided value.\n          location:\n            path: lib/ab12-gen.js\n            start_line: 917\n            end_line: 917\n            start_column: 7\n            end_column: 18\n          classifications: []\n        instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances\n    code-scanning-alert:\n      value:\n        number: 42\n        created_at: '2020-06-19T11:21:34Z'\n        url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\n        html_url: https://github.com/octocat/hello-world/code-scanning/42\n        state: dismissed\n        dismissed_by:\n          login: octocat\n          id: 54933897\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        dismissed_at: '2020-02-14T12:29:18Z'\n        dismissed_reason: false positive\n        rule:\n          id: js/zipslip\n          severity: error\n          security_severity_level: high\n          description: Arbitrary file write during zip extraction (\"Zip Slip\")\n          name: js/zipslip\n          full_description: Extracting files from a malicious zip archive without\n            validating that the destination file path is within the destination directory\n            can cause files outside the destination directory to be overwritten.\n          tags:\n          - security\n          - external/cwe/cwe-022\n          help: '# Arbitrary file write during zip extraction (\"Zip Slip\")\\nExtracting\n            files from a malicious zip archive without validating that the destination\n            file path is within the destination directory can cause files outside\n            the destination directory to be overwritten ...'\n        tool:\n          name: CodeQL\n          guid:\n          version: 2.4.0\n        most_recent_instance:\n          ref: refs/heads/main\n          analysis_key: \".github/workflows/codeql-analysis.yml:CodeQL-Build\"\n          environment: \"{}\"\n          state: dismissed\n          commit_sha: 39406e42cb832f683daa691dd652a8dc36ee8930\n          message:\n            text: This path depends on a user-provided value.\n          location:\n            path: spec-main/api-session-spec.ts\n            start_line: 917\n            end_line: 917\n            start_column: 7\n            end_column: 18\n          classifications:\n          - test\n        instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\n    code-scanning-alert-dismissed:\n      value:\n        number: 42\n        created_at: '2020-08-25T21:28:36Z'\n        url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42\n        html_url: https://github.com/octocat/hello-world/code-scanning/42\n        state: dismissed\n        dismissed_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        dismissed_at: '2020-09-02T22:34:56Z'\n        dismissed_reason: false positive\n        rule:\n          id: js/zipslip\n          severity: error\n          security_severity_level: high\n          description: Arbitrary file write during zip extraction (\"Zip Slip\")\n          name: js/zipslip\n          full_description: Extracting files from a malicious zip archive without\n            validating that the destination file path is within the destination directory\n            can cause files outside the destination directory to be overwritten.\n          tags:\n          - security\n          - external/cwe/cwe-022\n          help: '# Arbitrary file write during zip extraction (\"Zip Slip\")\\nExtracting\n            files from a malicious zip archive without validating that the destination\n            file path is within the destination directory can cause files outside\n            the destination directory to be overwritten ...'\n        tool:\n          name: CodeQL\n          guid:\n          version: 2.4.0\n        most_recent_instance:\n          ref: refs/heads/main\n          analysis_key: \".github/workflows/codeql-analysis.yml:CodeQL-Build\"\n          environment: \"{}\"\n          state: dismissed\n          commit_sha: 39406e42cb832f683daa691dd652a8dc36ee8930\n          message:\n            text: This path depends on a user-provided value.\n          location:\n            path: spec-main/api-session-spec.ts\n            start_line: 917\n            end_line: 917\n            start_column: 7\n            end_column: 18\n          classifications:\n          - test\n        instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances\n    code-scanning-alert-instances:\n      value:\n      - ref: refs/heads/main\n        analysis_key: \".github/workflows/codeql-analysis.yml:CodeQL-Build\"\n        environment: ''\n        state: open\n        commit_sha: 39406e42cb832f683daa691dd652a8dc36ee8930\n        message:\n          text: This path depends on a user-provided value.\n        location:\n          path: lib/ab12-gen.js\n          start_line: 917\n          end_line: 917\n          start_column: 7\n          end_column: 18\n        classifications:\n        - library\n      - ref: refs/pull/3740/merge\n        analysis_key: \".github/workflows/codeql-analysis.yml:CodeQL-Build\"\n        environment: ''\n        category: \".github/workflows/codeql-analysis.yml:CodeQL-Build\"\n        state: fixed\n        commit_sha: b09da05606e27f463a2b49287684b4ae777092f2\n        message:\n          text: This suffix check is missing a length comparison to correctly handle\n            lastIndexOf returning -1.\n        location:\n          path: app/script.js\n          start_line: 2\n          end_line: 2\n          start_column: 10\n          end_column: 50\n        classifications:\n        - source\n    code-scanning-analysis-items:\n      value:\n      - ref: refs/heads/main\n        commit_sha: d99612c3e1f2970085cfbaeadf8f010ef69bad83\n        analysis_key: \".github/workflows/codeql-analysis.yml:analyze\"\n        environment: '{\"language\":\"python\"}'\n        error: ''\n        category: \".github/workflows/codeql-analysis.yml:analyze/language:python\"\n        created_at: '2020-08-27T15:05:21Z'\n        results_count: 17\n        rules_count: 49\n        id: 201\n        url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/201\n        sarif_id: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53\n        tool:\n          name: CodeQL\n          guid:\n          version: 2.4.0\n        deletable: true\n        warning: ''\n      - ref: refs/heads/my-branch\n        commit_sha: c8cff6510d4d084fb1b4aa13b64b97ca12b07321\n        analysis_key: \".github/workflows/shiftleft.yml:build\"\n        environment: \"{}\"\n        error: ''\n        category: \".github/workflows/shiftleft.yml:build/\"\n        created_at: '2020-08-31T22:46:44Z'\n        results_count: 17\n        rules_count: 32\n        id: 200\n        url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/200\n        sarif_id: 8981cd8e-b078-4ac3-a3be-1dad7dbd0b582\n        tool:\n          name: Python Security Analysis\n          guid:\n          version: 1.2.0\n        deletable: true\n        warning: ''\n    code-scanning-analysis-default:\n      summary: Default response\n      value:\n        ref: refs/heads/main\n        commit_sha: c18c69115654ff0166991962832dc2bd7756e655\n        analysis_key: \".github/workflows/codeql-analysis.yml:analyze\"\n        environment: '{\"language\":\"javascript\"}'\n        error: ''\n        category: \".github/workflows/codeql-analysis.yml:analyze/language:javascript\"\n        created_at: '2021-01-13T11:55:49Z'\n        results_count: 3\n        rules_count: 67\n        id: 3602840\n        url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/201\n        sarif_id: 47177e22-5596-11eb-80a1-c1e54ef945c6\n        tool:\n          name: CodeQL\n          guid:\n          version: 2.4.0\n        deletable: true\n        warning: ''\n    code-scanning-analysis-deletion:\n      summary: Default response\n      value:\n        next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41\n        confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete\n    code-scanning-sarif-upload:\n      summary: Default response\n      value:\n        id: 47177e22-5596-11eb-80a1-c1e54ef945c6\n        url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6\n    code-scanning-sarif-upload-status:\n      summary: Default response\n      value:\n        processing_status: complete\n        analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6\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-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    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    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    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    commit-items:\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: support@github.com\n            date: '2011-04-14T16:00:49Z'\n          committer:\n            name: Monalisa Octocat\n            email: support@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    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    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://github.com/orgs/github/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        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            allow_auto_merge: false\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            allow_auto_merge: false\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        auto_merge:\n        draft: false\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    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    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-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    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    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    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    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:\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-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    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    environments:\n      value:\n        total_count: 1\n        environments:\n        - id: 161088068\n          node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4\n          name: staging\n          url: https://api.github.com/repos/github/hello-world/environments/staging\n          html_url: https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\n          created_at: '2020-11-23T22:00:40Z'\n          updated_at: '2020-11-23T22:00:40Z'\n          protection_rules:\n          - id: 3736\n            node_id: MDQ6R2F0ZTM3MzY=\n            type: wait_timer\n            wait_timer: 30\n          - id: 3755\n            node_id: MDQ6R2F0ZTM3NTU=\n            type: required_reviewers\n            reviewers:\n            - type: User\n              reviewer:\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            - type: Team\n              reviewer:\n                id: 1\n                node_id: MDQ6VGVhbTE=\n                url: https://api.github.com/teams/1\n                html_url: https://github.com/orgs/github/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          - id: 3756\n            node_id: MDQ6R2F0ZTM3NTY=\n            type: branch_policy\n          deployment_branch_policy:\n            protected_branches: false\n            custom_branch_policies: true\n    environment:\n      value:\n        id: 161088068\n        node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4\n        name: staging\n        url: https://api.github.com/repos/github/hello-world/environments/staging\n        html_url: https://github.com/github/hello-world/deployments/activity_log?environments_filter=staging\n        created_at: '2020-11-23T22:00:40Z'\n        updated_at: '2020-11-23T22:00:40Z'\n        protection_rules:\n        - id: 3736\n          node_id: MDQ6R2F0ZTM3MzY=\n          type: wait_timer\n          wait_timer: 30\n        - id: 3755\n          node_id: MDQ6R2F0ZTM3NTU=\n          type: required_reviewers\n          reviewers:\n          - type: User\n            reviewer:\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          - type: Team\n            reviewer:\n              id: 1\n              node_id: MDQ6VGVhbTE=\n              url: https://api.github.com/teams/1\n              html_url: https://github.com/orgs/github/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        - id: 3756\n          node_id: MDQ6R2F0ZTM3NTY=\n          type: branch_policy\n        deployment_branch_policy:\n          protected_branches: false\n          custom_branch_policies: true\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    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:\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          html_url: https://github.com/octocat/Hello-World/commit/7d1b31e74ee336d15cbd21741bc88a537ed063a0\n        verification:\n          verified: false\n          reason: unsigned\n          signature:\n          payload:\n        html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\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        html_url: https://github.com/octocat/Hello-World/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: 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          html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\n        verification:\n          verified: false\n          reason: unsigned\n          signature:\n          payload:\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-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    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    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        deliveries_url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\n        last_response:\n          code:\n          status: unused\n          message:\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        deliveries_url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678/deliveries\n        last_response:\n          code:\n          status: unused\n          message:\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    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        expired: false\n        url: https://api.github.com/user/repository_invitations/1296269\n        html_url: https://github.com/octocat/Hello-World/invitations\n    issue-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        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    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    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-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-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          performed_via_github_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          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-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        performed_via_github_app:\n        label:\n          name: label\n          color: red\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    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    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    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    language:\n      value:\n        C: 78769\n        Python: 7769\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    merged-upstream:\n      value:\n        message: Successfully fetched and fast-forwarded from upstream defunkt:main\n        merge_type: fast-forward\n        base_branch: defunkt:main\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    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    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        public: true\n        https_certificate:\n          state: approved\n          description: Certificate is approved\n          domains:\n          - developer.github.com\n          expires_at: '2021-05-22'\n        https_enforced: true\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    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:\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-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    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    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    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    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://github.com/orgs/github/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            allow_forking: 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        auto_merge:\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-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-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-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-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    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-merge-result-response-if-merge-was-successful:\n      value:\n        sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        merged: true\n        message: Pull Request successfully merged\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://github.com/orgs/github/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://github.com/orgs/github/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        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            allow_auto_merge: false\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            allow_auto_merge: false\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        auto_merge:\n        draft: false\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-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-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-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    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    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    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    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        discussion_url: https://github.com/octocat/Hello-World/discussions/90\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-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    release-notes-content:\n      value:\n        name: Release v1.0.0 is now available!\n        body: \"##Changes in Release v1.0.0 ... ##Contributors @monalisa\"\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    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    secret-scanning-alert-list:\n      value:\n      - number: 2\n        created_at: '2020-11-06T18:48:51Z'\n        url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2\n        html_url: https://github.com/owner/private-repo/security/secret-scanning/2\n        locations_url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/2/locations\n        state: resolved\n        resolution: false_positive\n        resolved_at: '2020-11-07T02:47:13Z'\n        resolved_by:\n          login: monalisa\n          id: 2\n          node_id: MDQ6VXNlcjI=\n          avatar_url: https://alambic.github.com/avatars/u/2?\n          gravatar_id: ''\n          url: https://api.github.com/users/monalisa\n          html_url: https://github.com/monalisa\n          followers_url: https://api.github.com/users/monalisa/followers\n          following_url: https://api.github.com/users/monalisa/following{/other_user}\n          gists_url: https://api.github.com/users/monalisa/gists{/gist_id}\n          starred_url: https://api.github.com/users/monalisa/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/monalisa/subscriptions\n          organizations_url: https://api.github.com/users/monalisa/orgs\n          repos_url: https://api.github.com/users/monalisa/repos\n          events_url: https://api.github.com/users/monalisa/events{/privacy}\n          received_events_url: https://api.github.com/users/monalisa/received_events\n          type: User\n          site_admin: true\n        secret_type: adafruit_io_key\n        secret: aio_XXXXXXXXXXXXXXXXXXXXXXXXXXXX\n      - number: 1\n        created_at: '2020-11-06T18:18:30Z'\n        url: https://api.github.com/repos/owner/repo/secret-scanning/alerts/1\n        html_url: https://github.com/owner/repo/security/secret-scanning/1\n        locations_url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/1/locations\n        state: open\n        resolution:\n        resolved_at:\n        resolved_by:\n        secret_type: mailchimp_api_key\n        secret: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\n    secret-scanning-alert-open:\n      value:\n        number: 42\n        created_at: '2020-11-06T18:18:30Z'\n        url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\n        html_url: https://github.com/owner/private-repo/security/secret-scanning/42\n        locations_url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\n        state: open\n        resolution:\n        resolved_at:\n        resolved_by:\n        secret_type: mailchimp_api_key\n        secret: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\n    secret-scanning-alert-resolved:\n      value:\n        number: 42\n        created_at: '2020-11-06T18:18:30Z'\n        url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42\n        html_url: https://github.com/owner/private-repo/security/secret-scanning/42\n        locations_url: https://api.github.com/repos/owner/private-repo/secret-scanning/alerts/42/locations\n        state: resolved\n        resolution: used_in_tests\n        resolved_at: '2020-11-16T22:42:07Z'\n        resolved_by:\n          login: monalisa\n          id: 2\n          node_id: MDQ6VXNlcjI=\n          avatar_url: https://alambic.github.com/avatars/u/2?\n          gravatar_id: ''\n          url: https://api.github.com/users/monalisa\n          html_url: https://github.com/monalisa\n          followers_url: https://api.github.com/users/monalisa/followers\n          following_url: https://api.github.com/users/monalisa/following{/other_user}\n          gists_url: https://api.github.com/users/monalisa/gists{/gist_id}\n          starred_url: https://api.github.com/users/monalisa/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/monalisa/subscriptions\n          organizations_url: https://api.github.com/users/monalisa/orgs\n          repos_url: https://api.github.com/users/monalisa/repos\n          events_url: https://api.github.com/users/monalisa/events{/privacy}\n          received_events_url: https://api.github.com/users/monalisa/received_events\n          type: User\n          site_admin: true\n        secret_type: mailchimp_api_key\n        secret: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-us2\n    secret-scanning-location-list:\n      value:\n      - type: commit\n        details:\n          path: \"/example/secrets.txt\"\n          start_line: 1\n          end_line: 1\n          start_column: 1\n          end_column: 64\n          blob_sha: af5626b4a114abcb82d63db7c8082c3c4756e51b\n          blob_url: https://api.github.com/repos/octocat/hello-world/git/blobs/af5626b4a114abcb82d63db7c8082c3c4756e51b\n          commit_sha: f14d7debf9775f957cf4f1e8176da0786431f72b\n          commit_url: https://api.github.com/repos/octocat/hello-world/git/commits/f14d7debf9775f957cf4f1e8176da0786431f72b\n      - type: commit\n        details:\n          path: \"/example/secrets.txt\"\n          start_line: 5\n          end_line: 5\n          start_column: 1\n          end_column: 64\n          blob_sha: 9def38117ab2d8355b982429aa924e268b4b0065\n          blob_url: https://api.github.com/repos/octocat/hello-world/git/blobs/9def38117ab2d8355b982429aa924e268b4b0065\n          commit_sha: 588483b99a46342501d99e3f10630cfc1219ea32\n          commit_url: https://api.github.com/repos/octocat/hello-world/git/commits/588483b99a46342501d99e3f10630cfc1219ea32\n      - type: commit\n        details:\n          path: \"/example/secrets.txt\"\n          start_line: 12\n          end_line: 12\n          start_column: 1\n          end_column: 64\n          blob_sha: 0b33e9c66e19f7fb15137a82ff1c04c10cba6caf\n          blob_url: https://api.github.com/repos/octocat/hello-world/git/blobs/0b33e9c66e19f7fb15137a82ff1c04c10cba6caf\n          commit_sha: 9def38117ab2d8355b982429aa924e268b4b0065\n          commit_url: https://api.github.com/repos/octocat/hello-world/git/commits/9def38117ab2d8355b982429aa924e268b4b0065\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    code-frequency-stat-items:\n      value:\n      - - 1302998400\n        - 1124\n        - -435\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    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    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    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    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    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    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    topic:\n      value:\n        names:\n        - octocat\n        - atom\n        - electron\n        - api\n    minimal-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_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: 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        template_repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World-Template\n          full_name: octocat/Hello-World-Template\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-Template\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World-Template\n          archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World-Template.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World-Template.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World-Template.git\n          mirror_url: git:git.example.com/octocat/Hello-World-Template\n          hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World-Template\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          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          allow_forking: true\n          subscribers_count: 42\n          network_count: 0\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        allow_auto_merge: 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    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    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    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    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    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          visibility: private\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    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    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    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    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    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    team-repository-alternative-response-with-extra-repository-information:\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        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: 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          maintain: false\n          push: false\n          triage: false\n          pull: true\n        allow_rebase_merge: true\n        template_repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World-Template\n          full_name: octocat/Hello-World-Template\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-Template\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World-Template\n          archive_url: https://api.github.com/repos/octocat/Hello-World-Template/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World-Template/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World-Template/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World-Template/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World-Template/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World-Template/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World-Template/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World-Template/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World-Template/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World-Template/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World-Template/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World-Template/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World-Template/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World-Template/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World-Template/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World-Template/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World-Template.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World-Template/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World-Template/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World-Template/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World-Template/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World-Template/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World-Template/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World-Template/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World-Template/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World-Template/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World-Template/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World-Template.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World-Template/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World-Template/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World-Template/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World-Template/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World-Template/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World-Template/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World-Template/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World-Template.git\n          mirror_url: git:git.example.com/octocat/Hello-World-Template\n          hooks_url: https://api.github.com/repos/octocat/Hello-World-Template/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World-Template\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            pull: true\n            triage: false\n            push: false\n            maintain: false\n            admin: false\n          allow_rebase_merge: true\n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          allow_auto_merge: false\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        allow_squash_merge: true\n        allow_auto_merge: false\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    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        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        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        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    email-items-2:\n      value:\n      - email: octocat@github.com\n        verified: true\n        primary: true\n        visibility: public\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    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    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.yaml\n          has_multiple_single_files: true\n          single_file_paths:\n          - config.yml\n          - \".github/issue_TEMPLATE.md\"\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          suspended_at:\n          suspended_by:\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.yaml\n          has_multiple_single_files: true\n          single_file_paths:\n          - config.yml\n          - \".github/issue_TEMPLATE.md\"\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          suspended_at:\n          suspended_by:\n    key-items:\n      value:\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: 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    key:\n      value:\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    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    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-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        allow_auto_merge: false\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    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          allow_auto_merge: false\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    team-full-items:\n      value:\n      - id: 1\n        node_id: MDQ6VGVhbTE=\n        url: https://api.github.com/teams/1\n        html_url: https://github.com/orgs/github/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          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        ldap_dn: uid=asdf,ou=users,dc=github,dc=com\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    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    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  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    location:\n      example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D\n      schema:\n        type: string\n  responses:\n    not_found:\n      description: Resource not found\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\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    validation_failed:\n      description: Validation failed\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/validation-error\"\n    accepted:\n      description: Accepted\n      content:\n        application/json:\n          schema:\n            type: object\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    forbidden:\n      description: Forbidden\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    requires_authentication:\n      description: Requires authentication\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    not_modified:\n      description: Not modified\n    gone:\n      description: Gone\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    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    moved_permanently:\n      description: Moved permanently\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    conflict:\n      description: Conflict\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    temporary_redirect:\n      description: Temporary Redirect\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    code_scanning_forbidden_read:\n      description: Response if GitHub Advanced Security is not enabled for this repository\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    code_scanning_forbidden_write:\n      description: Response if the repository is archived or if github advanced security\n        is not enabled for this repository\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    internal_error:\n      description: Internal Error\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    found:\n      description: Found\n    no_content:\n      description: A header with no content is returned.\n\n"
  },
  {
    "path": "test/fixture/petstore.json",
    "content": "{\n  \"swagger\": \"2.0\",\n  \"info\": {\n    \"description\": \"This is a sample server Petstore server.  You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/).  For this sample, you can use the api key `special-key` to test the authorization filters.\",\n    \"version\": \"1.0.7\",\n    \"title\": \"Swagger Petstore\",\n    \"termsOfService\": \"http://swagger.io/terms/\",\n    \"contact\": { \"email\": \"apiteam@swagger.io\" },\n    \"license\": {\n      \"name\": \"Apache 2.0\",\n      \"url\": \"http://www.apache.org/licenses/LICENSE-2.0.html\"\n    }\n  },\n  \"host\": \"petstore.swagger.io\",\n  \"basePath\": \"/v2\",\n  \"tags\": [\n    {\n      \"name\": \"pet\",\n      \"description\": \"Everything about your Pets\",\n      \"externalDocs\": {\n        \"description\": \"Find out more\",\n        \"url\": \"http://swagger.io\"\n      }\n    },\n    { \"name\": \"store\", \"description\": \"Access to Petstore orders\" },\n    {\n      \"name\": \"user\",\n      \"description\": \"Operations about user\",\n      \"externalDocs\": {\n        \"description\": \"Find out more about our store\",\n        \"url\": \"http://swagger.io\"\n      }\n    }\n  ],\n  \"schemes\": [\"https\", \"http\"],\n  \"paths\": {\n    \"/pet/{petId}\": {\n      \"get\": {\n        \"tags\": [\"pet\"],\n        \"summary\": \"Find pet by ID\",\n        \"description\": \"Returns a single pet\",\n        \"operationId\": \"getPetById\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"petId\",\n            \"in\": \"path\",\n            \"description\": \"ID of pet to return\",\n            \"required\": true,\n            \"type\": \"integer\",\n            \"format\": \"int64\"\n          }\n        ],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"schema\": { \"$ref\": \"#/definitions/Pet\" }\n          },\n          \"400\": { \"description\": \"Invalid ID supplied\" },\n          \"404\": { \"description\": \"Pet not found\" }\n        },\n        \"security\": [{ \"api_key\": [] }]\n      },\n      \"post\": {\n        \"tags\": [\"pet\"],\n        \"summary\": \"Updates a pet in the store with form data\",\n        \"description\": \"\",\n        \"operationId\": \"updatePetWithForm\",\n        \"consumes\": [\"application/x-www-form-urlencoded\"],\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"petId\",\n            \"in\": \"path\",\n            \"description\": \"ID of pet that needs to be updated\",\n            \"required\": true,\n            \"type\": \"integer\",\n            \"format\": \"int64\"\n          },\n          {\n            \"name\": \"name\",\n            \"in\": \"formData\",\n            \"description\": \"Updated name of the pet\",\n            \"required\": false,\n            \"type\": \"string\"\n          },\n          {\n            \"name\": \"status\",\n            \"in\": \"formData\",\n            \"description\": \"Updated status of the pet\",\n            \"required\": false,\n            \"type\": \"string\"\n          }\n        ],\n        \"responses\": { \"405\": { \"description\": \"Invalid input\" } },\n        \"security\": [{ \"petstore_auth\": [\"write:pets\", \"read:pets\"] }]\n      },\n      \"delete\": {\n        \"tags\": [\"pet\"],\n        \"summary\": \"Deletes a pet\",\n        \"description\": \"\",\n        \"operationId\": \"deletePet\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"api_key\",\n            \"in\": \"header\",\n            \"required\": false,\n            \"type\": \"string\"\n          },\n          {\n            \"name\": \"petId\",\n            \"in\": \"path\",\n            \"description\": \"Pet id to delete\",\n            \"required\": true,\n            \"type\": \"integer\",\n            \"format\": \"int64\"\n          }\n        ],\n        \"responses\": {\n          \"400\": { \"description\": \"Invalid ID supplied\" },\n          \"404\": { \"description\": \"Pet not found\" }\n        },\n        \"security\": [{ \"petstore_auth\": [\"write:pets\", \"read:pets\"] }]\n      }\n    },\n    \"/pet/{petId}/uploadImage\": {\n      \"post\": {\n        \"tags\": [\"pet\"],\n        \"summary\": \"uploads an image\",\n        \"description\": \"\",\n        \"operationId\": \"uploadFile\",\n        \"consumes\": [\"multipart/form-data\"],\n        \"produces\": [\"application/json\"],\n        \"parameters\": [\n          {\n            \"name\": \"petId\",\n            \"in\": \"path\",\n            \"description\": \"ID of pet to update\",\n            \"required\": true,\n            \"type\": \"integer\",\n            \"format\": \"int64\"\n          },\n          {\n            \"name\": \"additionalMetadata\",\n            \"in\": \"formData\",\n            \"description\": \"Additional data to pass to server\",\n            \"required\": false,\n            \"type\": \"string\"\n          },\n          {\n            \"name\": \"file\",\n            \"in\": \"formData\",\n            \"description\": \"file to upload\",\n            \"required\": false,\n            \"type\": \"file\"\n          }\n        ],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"schema\": { \"$ref\": \"#/definitions/ApiResponse\" }\n          }\n        },\n        \"security\": [{ \"petstore_auth\": [\"write:pets\", \"read:pets\"] }]\n      }\n    },\n    \"/pet\": {\n      \"post\": {\n        \"tags\": [\"pet\"],\n        \"summary\": \"Add a new pet to the store\",\n        \"description\": \"\",\n        \"operationId\": \"addPet\",\n        \"consumes\": [\"application/json\", \"application/xml\"],\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"in\": \"body\",\n            \"name\": \"body\",\n            \"description\": \"Pet object that needs to be added to the store\",\n            \"required\": true,\n            \"schema\": { \"$ref\": \"#/definitions/Pet\" }\n          }\n        ],\n        \"responses\": { \"405\": { \"description\": \"Invalid input\" } },\n        \"security\": [{ \"petstore_auth\": [\"write:pets\", \"read:pets\"] }]\n      },\n      \"put\": {\n        \"tags\": [\"pet\"],\n        \"summary\": \"Update an existing pet\",\n        \"description\": \"\",\n        \"operationId\": \"updatePet\",\n        \"consumes\": [\"application/json\", \"application/xml\"],\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"in\": \"body\",\n            \"name\": \"body\",\n            \"description\": \"Pet object that needs to be added to the store\",\n            \"required\": true,\n            \"schema\": { \"$ref\": \"#/definitions/Pet\" }\n          }\n        ],\n        \"responses\": {\n          \"400\": { \"description\": \"Invalid ID supplied\" },\n          \"404\": { \"description\": \"Pet not found\" },\n          \"405\": { \"description\": \"Validation exception\" }\n        },\n        \"security\": [{ \"petstore_auth\": [\"write:pets\", \"read:pets\"] }]\n      }\n    },\n    \"/pet/findByStatus\": {\n      \"get\": {\n        \"tags\": [\"pet\"],\n        \"summary\": \"Finds Pets by status\",\n        \"description\": \"Multiple status values can be provided with comma separated strings\",\n        \"operationId\": \"findPetsByStatus\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"status\",\n            \"in\": \"query\",\n            \"description\": \"Status values that need to be considered for filter\",\n            \"required\": true,\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"string\",\n              \"enum\": [\"available\", \"pending\", \"sold\"],\n              \"default\": \"available\"\n            },\n            \"collectionFormat\": \"multi\"\n          }\n        ],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"schema\": {\n              \"type\": \"array\",\n              \"items\": { \"$ref\": \"#/definitions/Pet\" }\n            }\n          },\n          \"400\": { \"description\": \"Invalid status value\" }\n        },\n        \"security\": [{ \"petstore_auth\": [\"write:pets\", \"read:pets\"] }]\n      }\n    },\n    \"/pet/findByTags\": {\n      \"get\": {\n        \"tags\": [\"pet\"],\n        \"summary\": \"Finds Pets by tags\",\n        \"description\": \"Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.\",\n        \"operationId\": \"findPetsByTags\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"tags\",\n            \"in\": \"query\",\n            \"description\": \"Tags to filter by\",\n            \"required\": true,\n            \"type\": \"array\",\n            \"items\": { \"type\": \"string\" },\n            \"collectionFormat\": \"multi\"\n          }\n        ],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"schema\": {\n              \"type\": \"array\",\n              \"items\": { \"$ref\": \"#/definitions/Pet\" }\n            }\n          },\n          \"400\": { \"description\": \"Invalid tag value\" }\n        },\n        \"security\": [{ \"petstore_auth\": [\"write:pets\", \"read:pets\"] }],\n        \"deprecated\": true\n      }\n    },\n    \"/store/inventory\": {\n      \"get\": {\n        \"tags\": [\"store\"],\n        \"summary\": \"Returns pet inventories by status\",\n        \"description\": \"Returns a map of status codes to quantities\",\n        \"operationId\": \"getInventory\",\n        \"produces\": [\"application/json\"],\n        \"parameters\": [],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"schema\": {\n              \"type\": \"object\",\n              \"additionalProperties\": { \"type\": \"integer\", \"format\": \"int32\" }\n            }\n          }\n        },\n        \"security\": [{ \"api_key\": [] }]\n      }\n    },\n    \"/store/order/{orderId}\": {\n      \"get\": {\n        \"tags\": [\"store\"],\n        \"summary\": \"Find purchase order by ID\",\n        \"description\": \"For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions\",\n        \"operationId\": \"getOrderById\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"orderId\",\n            \"in\": \"path\",\n            \"description\": \"ID of pet that needs to be fetched\",\n            \"required\": true,\n            \"type\": \"integer\",\n            \"maximum\": 10,\n            \"minimum\": 1,\n            \"format\": \"int64\"\n          }\n        ],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"schema\": { \"$ref\": \"#/definitions/Order\" }\n          },\n          \"400\": { \"description\": \"Invalid ID supplied\" },\n          \"404\": { \"description\": \"Order not found\" }\n        }\n      },\n      \"delete\": {\n        \"tags\": [\"store\"],\n        \"summary\": \"Delete purchase order by ID\",\n        \"description\": \"For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors\",\n        \"operationId\": \"deleteOrder\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"orderId\",\n            \"in\": \"path\",\n            \"description\": \"ID of the order that needs to be deleted\",\n            \"required\": true,\n            \"type\": \"integer\",\n            \"minimum\": 1,\n            \"format\": \"int64\"\n          }\n        ],\n        \"responses\": {\n          \"400\": { \"description\": \"Invalid ID supplied\" },\n          \"404\": { \"description\": \"Order not found\" }\n        }\n      }\n    },\n    \"/store/order\": {\n      \"post\": {\n        \"tags\": [\"store\"],\n        \"summary\": \"Place an order for a pet\",\n        \"description\": \"\",\n        \"operationId\": \"placeOrder\",\n        \"consumes\": [\"application/json\"],\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"in\": \"body\",\n            \"name\": \"body\",\n            \"description\": \"order placed for purchasing the pet\",\n            \"required\": true,\n            \"schema\": { \"$ref\": \"#/definitions/Order\" }\n          }\n        ],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"schema\": { \"$ref\": \"#/definitions/Order\" }\n          },\n          \"400\": { \"description\": \"Invalid Order\" }\n        }\n      }\n    },\n    \"/user/{username}\": {\n      \"get\": {\n        \"tags\": [\"user\"],\n        \"summary\": \"Get user by user name\",\n        \"description\": \"\",\n        \"operationId\": \"getUserByName\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"username\",\n            \"in\": \"path\",\n            \"description\": \"The name that needs to be fetched. Use user1 for testing. \",\n            \"required\": true,\n            \"type\": \"string\"\n          }\n        ],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"schema\": { \"$ref\": \"#/definitions/User\" }\n          },\n          \"400\": { \"description\": \"Invalid username supplied\" },\n          \"404\": { \"description\": \"User not found\" }\n        }\n      },\n      \"put\": {\n        \"tags\": [\"user\"],\n        \"summary\": \"Updated user\",\n        \"description\": \"This can only be done by the logged in user.\",\n        \"operationId\": \"updateUser\",\n        \"consumes\": [\"application/json\"],\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"username\",\n            \"in\": \"path\",\n            \"description\": \"name that need to be updated\",\n            \"required\": true,\n            \"type\": \"string\"\n          },\n          {\n            \"in\": \"body\",\n            \"name\": \"body\",\n            \"description\": \"Updated user object\",\n            \"required\": true,\n            \"schema\": { \"$ref\": \"#/definitions/User\" }\n          }\n        ],\n        \"responses\": {\n          \"400\": { \"description\": \"Invalid user supplied\" },\n          \"404\": { \"description\": \"User not found\" }\n        }\n      },\n      \"delete\": {\n        \"tags\": [\"user\"],\n        \"summary\": \"Delete user\",\n        \"description\": \"This can only be done by the logged in user.\",\n        \"operationId\": \"deleteUser\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"username\",\n            \"in\": \"path\",\n            \"description\": \"The name that needs to be deleted\",\n            \"required\": true,\n            \"type\": \"string\"\n          }\n        ],\n        \"responses\": {\n          \"400\": { \"description\": \"Invalid username supplied\" },\n          \"404\": { \"description\": \"User not found\" }\n        }\n      }\n    },\n    \"/user\": {\n      \"post\": {\n        \"tags\": [\"user\"],\n        \"summary\": \"Create user\",\n        \"description\": \"This can only be done by the logged in user.\",\n        \"operationId\": \"createUser\",\n        \"consumes\": [\"application/json\"],\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"in\": \"body\",\n            \"name\": \"body\",\n            \"description\": \"Created user object\",\n            \"required\": true,\n            \"schema\": { \"$ref\": \"#/definitions/User\" }\n          }\n        ],\n        \"responses\": { \"default\": { \"description\": \"successful operation\" } }\n      }\n    },\n    \"/user/createWithList\": {\n      \"post\": {\n        \"tags\": [\"user\"],\n        \"summary\": \"Creates list of users with given input array\",\n        \"description\": \"\",\n        \"operationId\": \"createUsersWithListInput\",\n        \"consumes\": [\"application/json\"],\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"in\": \"body\",\n            \"name\": \"body\",\n            \"description\": \"List of user object\",\n            \"required\": true,\n            \"schema\": {\n              \"type\": \"array\",\n              \"items\": { \"$ref\": \"#/definitions/User\" }\n            }\n          }\n        ],\n        \"responses\": { \"default\": { \"description\": \"successful operation\" } }\n      }\n    },\n    \"/user/login\": {\n      \"get\": {\n        \"tags\": [\"user\"],\n        \"summary\": \"Logs user into the system\",\n        \"description\": \"\",\n        \"operationId\": \"loginUser\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"name\": \"username\",\n            \"in\": \"query\",\n            \"description\": \"The user name for login\",\n            \"required\": true,\n            \"type\": \"string\"\n          },\n          {\n            \"name\": \"password\",\n            \"in\": \"query\",\n            \"description\": \"The password for login in clear text\",\n            \"required\": true,\n            \"type\": \"string\"\n          }\n        ],\n        \"responses\": {\n          \"200\": {\n            \"description\": \"successful operation\",\n            \"headers\": {\n              \"X-Expires-After\": {\n                \"type\": \"string\",\n                \"format\": \"date-time\",\n                \"description\": \"date in UTC when token expires\"\n              },\n              \"X-Rate-Limit\": {\n                \"type\": \"integer\",\n                \"format\": \"int32\",\n                \"description\": \"calls per hour allowed by the user\"\n              }\n            },\n            \"schema\": { \"type\": \"string\" }\n          },\n          \"400\": { \"description\": \"Invalid username/password supplied\" }\n        }\n      }\n    },\n    \"/user/logout\": {\n      \"get\": {\n        \"tags\": [\"user\"],\n        \"summary\": \"Logs out current logged in user session\",\n        \"description\": \"\",\n        \"operationId\": \"logoutUser\",\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [],\n        \"responses\": { \"default\": { \"description\": \"successful operation\" } }\n      }\n    },\n    \"/user/createWithArray\": {\n      \"post\": {\n        \"tags\": [\"user\"],\n        \"summary\": \"Creates list of users with given input array\",\n        \"description\": \"\",\n        \"operationId\": \"createUsersWithArrayInput\",\n        \"consumes\": [\"application/json\"],\n        \"produces\": [\"application/json\", \"application/xml\"],\n        \"parameters\": [\n          {\n            \"in\": \"body\",\n            \"name\": \"body\",\n            \"description\": \"List of user object\",\n            \"required\": true,\n            \"schema\": {\n              \"type\": \"array\",\n              \"items\": { \"$ref\": \"#/definitions/User\" }\n            }\n          }\n        ],\n        \"responses\": { \"default\": { \"description\": \"successful operation\" } }\n      }\n    }\n  },\n  \"securityDefinitions\": {\n    \"api_key\": { \"type\": \"apiKey\", \"name\": \"api_key\", \"in\": \"header\" },\n    \"petstore_auth\": {\n      \"type\": \"oauth2\",\n      \"authorizationUrl\": \"https://petstore.swagger.io/oauth/authorize\",\n      \"flow\": \"implicit\",\n      \"scopes\": {\n        \"read:pets\": \"read your pets\",\n        \"write:pets\": \"modify pets in your account\"\n      }\n    }\n  },\n  \"definitions\": {\n    \"Category\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"id\": { \"type\": \"integer\", \"format\": \"int64\" },\n        \"name\": { \"type\": \"string\" }\n      },\n      \"xml\": { \"name\": \"Category\" }\n    },\n    \"Pet\": {\n      \"type\": \"object\",\n      \"required\": [\"name\", \"photoUrls\"],\n      \"properties\": {\n        \"id\": { \"type\": \"integer\", \"format\": \"int64\" },\n        \"category\": { \"$ref\": \"#/definitions/Category\" },\n        \"name\": { \"type\": \"string\", \"example\": \"doggie\" },\n        \"photoUrls\": {\n          \"type\": \"array\",\n          \"xml\": { \"wrapped\": true },\n          \"items\": { \"type\": \"string\", \"xml\": { \"name\": \"photoUrl\" } }\n        },\n        \"tags\": {\n          \"type\": \"array\",\n          \"xml\": { \"wrapped\": true },\n          \"items\": { \"xml\": { \"name\": \"tag\" }, \"$ref\": \"#/definitions/Tag\" }\n        },\n        \"status\": {\n          \"type\": \"string\",\n          \"description\": \"pet status in the store\",\n          \"enum\": [\"available\", \"pending\", \"sold\"]\n        }\n      },\n      \"xml\": { \"name\": \"Pet\" }\n    },\n    \"Tag\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"id\": { \"type\": \"integer\", \"format\": \"int64\" },\n        \"name\": { \"type\": \"string\" }\n      },\n      \"xml\": { \"name\": \"Tag\" }\n    },\n    \"ApiResponse\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"code\": { \"type\": \"integer\", \"format\": \"int32\" },\n        \"type\": { \"type\": \"string\" },\n        \"message\": { \"type\": \"string\" }\n      }\n    },\n    \"Order\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"id\": { \"type\": \"integer\", \"format\": \"int64\" },\n        \"petId\": { \"type\": \"integer\", \"format\": \"int64\" },\n        \"quantity\": { \"type\": \"integer\", \"format\": \"int32\" },\n        \"shipDate\": { \"type\": \"string\", \"format\": \"date-time\" },\n        \"status\": {\n          \"type\": \"string\",\n          \"description\": \"Order Status\",\n          \"enum\": [\"placed\", \"approved\", \"delivered\"]\n        },\n        \"complete\": { \"type\": \"boolean\" }\n      },\n      \"xml\": { \"name\": \"Order\" }\n    },\n    \"User\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"id\": { \"type\": \"integer\", \"format\": \"int64\" },\n        \"username\": { \"type\": \"string\" },\n        \"firstName\": { \"type\": \"string\" },\n        \"lastName\": { \"type\": \"string\" },\n        \"email\": { \"type\": \"string\" },\n        \"password\": { \"type\": \"string\" },\n        \"phone\": { \"type\": \"string\" },\n        \"userStatus\": {\n          \"type\": \"integer\",\n          \"format\": \"int32\",\n          \"description\": \"User Status\"\n        }\n      },\n      \"xml\": { \"name\": \"User\" }\n    }\n  },\n  \"externalDocs\": {\n    \"description\": \"Find out more about Swagger\",\n    \"url\": \"http://swagger.io\"\n  }\n}\n"
  },
  {
    "path": "test/fixture/strings.yaml",
    "content": "openapi: 3.0.0\ninfo:\n  title: (title)\n  version: 0.0.0\ntags: []\npaths:\n  /test:\n    get:\n      operationId: strings\n      parameters: []\n      responses:\n        '200':\n          description: The request has succeeded.\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  string5to10:\n                    type: string\n                    minLength: 5\n                    maxLength: 10\n                  atLeast3:\n                    type: string\n                    minLength: 3\n                  max7:\n                    type: string\n                    maxLength: 7\n                required:\n                  - string5to10\n                  - atLeast3\n                  - max7\ncomponents: {}\n"
  },
  {
    "path": "test/fixture/test.yaml",
    "content": "openapi: '3.0.2'\ninfo:\n  title: Test\n  version: '1.0'\ncomponents:\n  examples:\n    customerData:\n      value:\n        id: customer-id-test\n        createdAt: 1234567890\n        name: Customer name\n  schemas:\n    Creator:\n      description: Creator\n      allOf:\n        - $ref: '#/components/schemas/BaseEntity'\n        - type: object\n          properties:\n            name:\n              type: string\n              minLength: 1\n    BaseEntity:\n      allOf:\n        - type: object\n          properties:\n            id:\n              type: integer\n              minimum: 1\n            created_at:\n              type: string\n              format: date-time\n            creator:\n              $ref: '#/components/schemas/Creator'\n    TestEntity:\n      description: TestEntity\n      allOf:\n        - $ref: '#/components/schemas/BaseEntity'\n        - type: object\n          properties:\n            name:\n              type: string\n              minimum: 1\n    ObjectAllOfWrapper:\n      type: object\n      allOf:\n        - $ref: '#/components/schemas/ObjectEntity'\n    ObjectEntity:\n      type: object\n      properties:\n        id:\n          type: integer\n          minimum: 1\n        created_at:\n          type: string\n          format: date-time\n    OkResponse:\n      type: object\n      properties:\n        code:\n          type: integer\n          enum:\n            - 200\n        msg:\n          type: string\n          enum:\n            - success\n    Customer:\n      type: object\n      properties:\n        id:\n          type: string\n        createdAt:\n          type: integer\n        name:\n          type: string\n      example:\n        $ref: '#/components/examples/customerData/value'\npaths:\n  /test:\n    get:\n      responses:\n        '200':\n          description: OK\n          content:\n            application/json; ; charset=utf-8;:\n              schema:\n                allOf:\n                  - $ref: '#/components/schemas/OkResponse'\n                  - type: object\n                    properties:\n                      data:\n                        type: object\n                        properties:\n                          count:\n                            type: integer\n                          rows:\n                            type: array\n                            items:\n                              allOf:\n                               - $ref: '#/components/schemas/TestEntity'\n  /test2:\n    get:\n      responses:\n        default:\n          description: Default\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  ok:\n                    type: boolean\n        '200':\n          description: OK\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  data:\n                    type: array\n                    items:\n                      $ref: '#/components/schemas/ObjectAllOfWrapper'\n  /test3:\n    get:\n      responses:\n        '200':\n          description: OK\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  data:\n                    type: array\n                    items:\n                      $ref: '#/components/schemas/Customer'\n"
  },
  {
    "path": "test/generate.spec.ts",
    "content": "import get from 'lodash/get';\nimport keys from 'lodash/keys';\nimport { OpenAPIV3 } from 'openapi-types';\nimport { beforeAll, describe, it, expect } from 'vitest';\n\nimport { getV3Doc } from '../src/swagger';\nimport { generateOperationCollection } from '../src/generate';\n\nconst generateCollectionFromSpec = async (spec: string) => {\n  const apiDoc = await getV3Doc(spec);\n  return generateOperationCollection(apiDoc, { output: '' });\n};\n\ndescribe('generate:generateOperationCollection', () => {\n  let schema: OpenAPIV3.SchemaObject;\n  beforeAll(async () => {\n    const collection = await generateCollectionFromSpec('./test/fixture/test.yaml');\n    schema = get(collection, [0, 'response', '0', 'responses', 'application/json; ; charset=utf-8;', 'allOf', 1]);\n  });\n\n  it('schema should be defined', () => {\n    expect(schema).toBeDefined();\n  });\n\n  it('should resolve ref under allOf', async () => {\n    const testEntity = get(schema, ['properties', 'data', 'properties', 'rows', 'items', 'allOf', 0]);\n    expect(testEntity).toBeDefined();\n    expect(testEntity.description).equal('TestEntity');\n  });\n\n  it(\"should resolve ref's allOf after it's resolving\", async () => {\n    const baseEntity = get(schema, [\n      'properties',\n      'data',\n      'properties',\n      'rows',\n      'items',\n      'allOf',\n      0,\n      'allOf',\n      0,\n      'allOf',\n      0,\n    ]);\n    expect(baseEntity).toMatchObject({ type: 'object' });\n    expect(baseEntity).not.haveOwnProperty('$ref');\n  });\n\n  it('should not resolve circular ref', async () => {\n    const creatorBaseEntity = get(schema, [\n      'properties',\n      'data',\n      'properties',\n      'rows',\n      'items',\n      'allOf',\n      0,\n      'allOf',\n      0,\n      'allOf',\n      0,\n      'properties',\n      'creator',\n      'allOf',\n      0,\n    ]);\n    expect(keys(creatorBaseEntity).length).toEqual(0);\n  });\n\n  it('should resolve type object allOf recursively', async () => {\n    const collection = await generateCollectionFromSpec('./test/fixture/test.yaml');\n    const arrayEntity = get(collection, [\n      1,\n      'response',\n      0,\n      'responses',\n      'application/json',\n      'properties',\n      'data',\n      'items',\n      'allOf',\n      0,\n    ]);\n    expect(arrayEntity).toMatchObject({ type: 'object' });\n  });\n\n  it('should resolve $ref in example values', async () => {\n    const collection = await generateCollectionFromSpec('./test/fixture/test.yaml');\n    const customerExample = get(collection, [\n      2,\n      'response',\n      0,\n      'responses',\n      'application/json',\n      'properties',\n      'data',\n      'items',\n      'example',\n    ]);\n    expect(customerExample).toMatchObject({\n      id: 'customer-id-test',\n      createdAt: 1234567890,\n      name: 'Customer name',\n    });\n  });\n});\n"
  },
  {
    "path": "test/template.spec.ts",
    "content": "import { describe, expect, it } from 'vitest';\n\nimport { mockTemplate } from '../src/template';\n\ndescribe('template:constants', () => {\n  it('emits MAX_STRING_LENGTH declaration in non-static mode', () => {\n    const out = mockTemplate([] as any, '', { output: '' } as any);\n    expect(out).toContain('const MAX_STRING_LENGTH =');\n  });\n\n  it('does not emit MAX_STRING_LENGTH declaration in static mode', () => {\n    const out = mockTemplate([] as any, '', { output: '', static: true } as any);\n    expect(out).not.toContain('const MAX_STRING_LENGTH =');\n  });\n\n  it('emits MAX_ARRAY_LENGTH declaration in non-static mode', () => {\n    const out = mockTemplate([] as any, '', { output: '' } as any);\n    expect(out).toContain('const MAX_ARRAY_LENGTH =');\n  });\n});\n\ndescribe('template:ai config expressions', () => {\n  it('treats plain model ids as string literals', () => {\n    const out = mockTemplate([] as any, '', {\n      output: '',\n      ai: {\n        enable: true,\n        provider: 'openai',\n        openai: {\n          apiKey: 'process.env.OPENAI_API_KEY',\n          model: 'gpt-4o',\n        },\n      },\n    } as any);\n\n    // apiKey stays as an expression\n    expect(out).toContain('apiKey: process.env.OPENAI_API_KEY');\n    // model becomes a quoted literal instead of invalid JS like `})(gpt-4o)`\n    expect(out).toContain('})(\"gpt-4o\")');\n  });\n\n  it('keeps explicit quoted values as-is', () => {\n    const out = mockTemplate([] as any, '', {\n      output: '',\n      ai: {\n        enable: true,\n        provider: 'openai',\n        openai: {\n          model: \"'gpt-4o'\",\n        },\n      },\n    } as any);\n\n    expect(out).toContain(\"})('gpt-4o')\");\n  });\n\n  it('throws if AI is enabled but provider model is missing', () => {\n    expect(() =>\n      mockTemplate([] as any, '', {\n        output: '',\n        ai: {\n          enable: true,\n          provider: 'openai',\n          openai: {\n            apiKey: 'process.env.OPENAI_API_KEY',\n          },\n        },\n      } as any),\n    ).toThrow(/ai\\.openai\\.model is missing/);\n  });\n});\n"
  },
  {
    "path": "test/transform.spec.ts",
    "content": "import { describe, expect, it, vi } from 'vitest';\n\nimport {\n  transformToGenerateResultFunctions,\n  transformJSONSchemaToFakerCode,\n  transformToHandlerCode,\n} from '../src/transform';\nimport { generateOperationCollection } from '../src/generate';\nimport { getV3Doc } from '../src/swagger';\nimport { OpenAPIV3 } from 'openapi-types';\n\ndescribe('transform:transformToGenerateResultFunctions', () => {\n  it('Generates a response function with expected faker calls', async () => {\n    const apiDoc = await getV3Doc('./test/fixture/strings.yaml');\n    const schema = generateOperationCollection(apiDoc, { output: '' });\n\n    const transform = transformToGenerateResultFunctions(schema, '');\n    const src = transform.replace('export', '').replace('};', '}');\n\n    {\n      const faker = {\n        string: {\n          alpha: vi.fn(),\n        },\n      };\n\n      const MAX_STRING_LENGTH = 897;\n\n      // direct eval is safe here, we know the generated code\n      // and we need the local scope\n      const generateFunction = eval(`(${src})`);\n      const generatedResponse = generateFunction();\n\n      expect(faker.string.alpha).toHaveBeenNthCalledWith(1, { length: { min: 5, max: 10 } });\n      expect(faker.string.alpha).toHaveBeenNthCalledWith(2, { length: { min: 3, max: MAX_STRING_LENGTH } });\n      expect(faker.string.alpha).toHaveBeenNthCalledWith(3, { length: { min: 0, max: 7 } });\n    }\n  });\n});\n\ndescribe('transform:transformToHandlerCode', () => {\n  it('sorts static paths before parameterized paths', () => {\n    const ops = [\n      {\n        verb: 'get',\n        path: '/users/:id',\n        response: [{ code: '200', id: 'User', responses: { 'application/json': { type: 'object' } as any } }],\n      },\n      {\n        verb: 'get',\n        path: '/users/me',\n        response: [{ code: '200', id: 'Me', responses: { 'application/json': { type: 'object' } as any } }],\n      },\n    ];\n\n    const out = transformToHandlerCode(ops as any, { output: '' } as any);\n    expect(out.indexOf('/users/me')).toBeLessThan(out.indexOf('/users/:id'));\n  });\n\n  it('can echo request body into JSON response when enabled', () => {\n    const ops = [\n      {\n        verb: 'post',\n        path: '/items',\n        response: [\n          {\n            code: '200',\n            id: 'Item',\n            responses: { 'application/json': { type: 'object' } as any },\n          },\n        ],\n      },\n    ];\n\n    const out = transformToHandlerCode(ops as any, { output: '', echoRequestBody: true } as any);\n    expect(out).toContain('async ({ request })');\n    expect(out).toContain('request.clone().json()');\n    expect(out).toContain('{ ...body, ...requestJson }');\n  });\n\n  it('awaits response generators in the handler body (required for AI mode)', () => {\n    const ops = [\n      {\n        verb: 'get',\n        path: '/items',\n        response: [\n          {\n            code: '200',\n            id: 'Item',\n            responses: { 'application/json': { type: 'object' } as any },\n          },\n        ],\n      },\n    ];\n\n    const out = transformToHandlerCode(ops as any, { output: '' } as any);\n    expect(out).toContain('await getItem200Response()');\n  });\n});\n\ndescribe('transform:transformJSONSchemaToFakerCode', () => {\n  describe('Given a string schema', () => {\n    it('Default case', () => {\n      const expected = 'faker.lorem.words()';\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'string',\n      };\n      expect(transformJSONSchemaToFakerCode(schema)).toBe(expected);\n    });\n\n    it('Returns ISO strings for date-time format', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'string',\n        format: 'date-time',\n      };\n      expect(transformJSONSchemaToFakerCode(schema)).toBe('faker.date.anytime().toISOString()');\n    });\n\n    it('Returns ISO strings for *_at keys', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'string',\n      };\n      expect(transformJSONSchemaToFakerCode(schema, 'created_at')).toBe('faker.date.anytime().toISOString()');\n    });\n\n    it('Prioritises example value', () => {\n      const expected = 'homerjsimpson@springfieldnuclear.org';\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'string',\n        example: expected,\n        pattern: '/^S+@S+.S+$/',\n      };\n      expect(transformJSONSchemaToFakerCode(schema)).toBe(JSON.stringify(expected));\n    });\n\n    it('Returns fromRegExp() if a JS regexp literal is provided', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'string',\n        pattern: '/^S+@S+.S+$/',\n      };\n      expect(transformJSONSchemaToFakerCode(schema)).toBe('faker.helpers.fromRegExp(/^S+@S+.S+$/)');\n    });\n\n    it('Returns fromRegExp(new RegExp()) if a bare regexp pattern is provided', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'string',\n        pattern: '^[a-zA-Z0-9-_]{2,50}$',\n      };\n      expect(transformJSONSchemaToFakerCode(schema)).toBe(\n        'faker.helpers.fromRegExp(new RegExp(\"^[a-zA-Z0-9-_]{2,50}$\"))',\n      );\n    });\n\n    it('Falls back if invalid regexp pattern is provided', () => {\n      const expected = 'faker.lorem.words()';\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'string',\n        pattern: '^\\\\',\n      };\n      const result = transformJSONSchemaToFakerCode(schema);\n      expect(result).toBe(expected);\n    });\n  });\n\n  describe('Given an array schema', () => {\n    const evaluateArraySchema = (schema: OpenAPIV3.SchemaObject, maxArrayLength: number) => {\n      const faker = {\n        number: {\n          int: vi.fn(() => 0),\n        },\n        lorem: {\n          words: vi.fn(() => 'word'),\n        },\n      };\n      const MAX_ARRAY_LENGTH = maxArrayLength;\n      // direct eval is safe here, we know the generated code\n      // and we need the local scope\n      eval(transformJSONSchemaToFakerCode(schema));\n      return faker;\n    };\n\n    it('caps maxItems by MAX_ARRAY_LENGTH and respects minItems', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'array',\n        minItems: 2,\n        maxItems: 10,\n        items: { type: 'string' },\n      };\n      const faker = evaluateArraySchema(schema, 3);\n      expect(faker.number.int).toHaveBeenCalledWith({ min: 2, max: 3 });\n    });\n\n    it('handles maxItems=0', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'array',\n        maxItems: 0,\n        items: { type: 'string' },\n      };\n      const faker = evaluateArraySchema(schema, 5);\n      expect(faker.number.int).toHaveBeenCalledWith({ min: 0, max: 0 });\n    });\n\n    it('clamps minItems when it exceeds MAX_ARRAY_LENGTH', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'array',\n        minItems: 5,\n        items: { type: 'string' },\n      };\n      const faker = evaluateArraySchema(schema, 3);\n      expect(faker.number.int).toHaveBeenCalledWith({ min: 3, max: 3 });\n    });\n\n    it('floors non-integer minItems and maxItems', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'array',\n        minItems: 2.9,\n        maxItems: 4.1,\n        items: { type: 'string' },\n      };\n      const faker = evaluateArraySchema(schema, 10);\n      expect(faker.number.int).toHaveBeenCalledWith({ min: 2, max: 4 });\n    });\n\n    it('handles MAX_ARRAY_LENGTH=0', () => {\n      const schema: OpenAPIV3.SchemaObject = {\n        type: 'array',\n        items: { type: 'string' },\n      };\n      const faker = evaluateArraySchema(schema, 0);\n      expect(faker.number.int).toHaveBeenCalledWith({ min: 0, max: 0 });\n    });\n  });\n});\n"
  },
  {
    "path": "test/typescript-generation.spec.ts",
    "content": "import * as fs from 'node:fs';\nimport * as path from 'node:path';\nimport { beforeAll, afterAll, describe, it, expect } from 'vitest';\nimport { execSync } from 'node:child_process';\nimport { generate } from '../src/generate';\n\nconst TEST_OUTPUT_DIR = 'test-output';\nconst TEST_SPEC_PATH = './test/fixture/test.yaml';\n\ndescribe('TypeScript file generation', () => {\n  beforeAll(() => {\n    if (fs.existsSync(TEST_OUTPUT_DIR)) {\n      const files = fs.readdirSync(TEST_OUTPUT_DIR);\n      files.forEach(file => {\n        fs.unlinkSync(path.join(TEST_OUTPUT_DIR, file));\n      });\n      fs.rmdirSync(TEST_OUTPUT_DIR);\n    }\n  });\n\n  afterAll(() => {\n    if (fs.existsSync(TEST_OUTPUT_DIR)) {\n      const files = fs.readdirSync(TEST_OUTPUT_DIR);\n      files.forEach(file => {\n        fs.unlinkSync(path.join(TEST_OUTPUT_DIR, file));\n      });\n      fs.rmdirSync(TEST_OUTPUT_DIR);\n    }\n  });\n\n  it('should generate JavaScript files by default', async () => {\n    await generate(TEST_SPEC_PATH, { output: TEST_OUTPUT_DIR });\n\n    expect(fs.existsSync(path.join(TEST_OUTPUT_DIR, 'handlers.js'))).toBe(true);\n    expect(fs.existsSync(path.join(TEST_OUTPUT_DIR, 'browser.js'))).toBe(true);\n    expect(fs.existsSync(path.join(TEST_OUTPUT_DIR, 'node.js'))).toBe(true);\n    expect(fs.existsSync(path.join(TEST_OUTPUT_DIR, 'native.js'))).toBe(true);\n  });\n\n  it('should generate TypeScript files when typescript option is true', async () => {\n    if (fs.existsSync(TEST_OUTPUT_DIR)) {\n      const files = fs.readdirSync(TEST_OUTPUT_DIR);\n      files.forEach(file => {\n        fs.unlinkSync(path.join(TEST_OUTPUT_DIR, file));\n      });\n    }\n\n    await generate(TEST_SPEC_PATH, { output: TEST_OUTPUT_DIR, typescript: true });\n\n    expect(fs.existsSync(path.join(TEST_OUTPUT_DIR, 'handlers.ts'))).toBe(true);\n    expect(fs.existsSync(path.join(TEST_OUTPUT_DIR, 'browser.ts'))).toBe(true);\n    expect(fs.existsSync(path.join(TEST_OUTPUT_DIR, 'node.ts'))).toBe(true);\n    expect(fs.existsSync(path.join(TEST_OUTPUT_DIR, 'native.ts'))).toBe(true);\n\n    // Ensure the generated React Native integration file compiles.\n    // This catches TS4094 when exporting inferred class types with private/protected members.\n    fs.writeFileSync(\n      path.join(TEST_OUTPUT_DIR, 'tsconfig.test.json'),\n      JSON.stringify(\n        {\n          compilerOptions: {\n            target: 'ES2020',\n            module: 'ESNext',\n            moduleResolution: 'Bundler',\n            strict: true,\n            skipLibCheck: true,\n            noEmit: true,\n          },\n          include: ['./*.ts'],\n        },\n        null,\n        2,\n      ),\n    );\n\n    execSync('npx tsc -p tsconfig.test.json', {\n      cwd: TEST_OUTPUT_DIR,\n      stdio: 'pipe',\n    });\n  });\n});\n"
  },
  {
    "path": "test/utils.spec.ts",
    "content": "import { describe, expect, it } from 'vitest';\n\nimport { isValidRegExp, toExpressLikePath } from '../src/utils';\n\ndescribe('utils:toExpressLikePath', () => {\n  it('should transform to express like path', () => {\n    expect(toExpressLikePath('/a/b/{c_d}')).toEqual('/a/b/:cD');\n    expect(toExpressLikePath('/{a}/{b}/{c}')).toEqual('/:a/:b/:c');\n  });\n});\n\ndescribe('utils:isValidRegExp', () => {\n  it('test cases', () => {\n    [\n      ['/^S+@S+.S+$/', true],\n      ['employ(|er|ee|ment|ing|able)', true],\n      ['[a-f0-9]{32}', true],\n      ['[A-Fa-f0-9]{64}', true],\n      ['^[0-9]{2,6}.[0-9]{5}$', true],\n      ['<tag>[^<]*</tag>', true],\n      ['aaaaaaaaaaaaaaaa', true],\n      ['\\\\', false],\n    ].forEach(([i, o]) => {\n      expect(isValidRegExp(i as string)).toBe(o);\n    });\n  });\n});\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"module\": \"ESNext\",\n    \"target\": \"esnext\",\n    \"lib\": [\"ESNext\", \"DOM\"],\n    \"esModuleInterop\": true,\n    \"strict\": true,\n    \"strictNullChecks\": true,\n    \"moduleResolution\": \"Node\",\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"noUnusedParameters\": true\n  },\n  \"include\": [\"src\"],\n  \"exclude\": [\"node_modules\", \"example\", \"dist\"]\n}\n"
  },
  {
    "path": "tsup.config.ts",
    "content": "import type { Options } from 'tsup';\n\nexport const tsup: Options = {\n  splitting: false,\n  sourcemap: false,\n  clean: true,\n  minify: false,\n  format: ['cjs'],\n  dts: false,\n  entryPoints: ['src/cli.ts'],\n};\n"
  },
  {
    "path": "vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config';\n\nexport default defineConfig({\n  test: {\n    // ...\n  },\n});\n"
  }
]