Please give me the structure of the oauthTokenData json schema for creat credential for google drive.
[
{
"additionalProperties": false,
"type": "object",
"properties": {
"clientId": {
"type": "string"
},
"clientSecret": {
"type": "string"
},
"oauthTokenData": {
"type": "json"
},
"notice": {
"type": "notice"
}
},
"required": [
"clientId",
"clientSecret"
]
}
]