codex / codex-rs /app-server-protocol /schema /json /ChatgptAuthTokensRefreshResponse.json
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
50ae831 verified
Raw
History Blame Contribute Delete
406 Bytes
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"accessToken": {
"type": "string"
},
"chatgptAccountId": {
"type": "string"
},
"chatgptPlanType": {
"type": [
"string",
"null"
]
}
},
"required": [
"accessToken",
"chatgptAccountId"
],
"title": "ChatgptAuthTokensRefreshResponse",
"type": "object"
}