{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"statusCode": {
"type": "integer"
},
"success": {
"type": "boolean"
},
"response": {
"type": "object",
"properties": {
"channel": {
"type": "string",
"enum": ["OAuth"]
},
"channelType": {
"type": "string",
"enum": [
"WHATSAPP",
"GMAIL",
"APPLE",
"LINKEDIN",
"MICROSOFT",
"FACEBOOK",
"SLACK",
"TWITTER",
"DISCORD",
"LINE",
"LINEAR",
"NOTION",
"TWITCH",
"GITHUB",
"BITBUCKET",
"ATLASSIAN",
"GITLAB",
"TRUE_CALLER"
]
},
"requestId": {
"type": "string"
}
},
"required": ["channel", "channelType", "requestId"]
}
},
"required": ["statusCode", "success", "response"]
}