Payload schema
branchstring
The branch the import targeted.
errorstring
What the sync reported.
requestIdstring
The settled obligation's identity.
requestedCommitOidstring
The head the original push delivery announced.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"branch": {
"type": "string",
"minLength": 1,
"description": "The branch the import targeted."
},
"error": {
"type": "string",
"description": "What the sync reported."
},
"requestId": {
"type": "string",
"minLength": 1,
"description": "The settled obligation's identity."
},
"requestedCommitOid": {
"type": "string",
"minLength": 1,
"description": "The head the original push delivery announced."
}
},
"required": [
"branch",
"error",
"requestId",
"requestedCommitOid"
]
}