Payload schema
connectionstring
The GitHub connection that was unlinked.
ownerstring
GitHub owner of the unlinked repository.
repostring
GitHub name of the unlinked repository.
repositoryIdinteger
GitHub's numeric repository id.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"connection": {
"type": "string",
"description": "The GitHub connection that was unlinked."
},
"owner": {
"type": "string",
"description": "GitHub owner of the unlinked repository."
},
"repo": {
"type": "string",
"description": "GitHub name of the unlinked repository."
},
"repositoryId": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991,
"description": "GitHub's numeric repository id."
}
},
"required": [
"connection",
"owner",
"repo",
"repositoryId"
]
}