{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserGitHubLinkStartResponse",
"title": "UserGitHubLinkStartResponse",
"type": "object",
"properties": {
"install_url": {
"type": "string",
"description": "URL to open in the browser to install or authorize the GitHub App for this user."
},
"connect_flow": {
"type": "string",
"description": "OAuth or install flow used for this GitHub connection."
}
},
"required": [
"connect_flow",
"install_url"
]
}