{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ChatgptAuthTokensRefreshResponse",
  "type": "object",
  "required": [
    "accessToken",
    "chatgptAccountId"
  ],
  "properties": {
    "accessToken": {
      "type": "string"
    },
    "chatgptAccountId": {
      "type": "string"
    },
    "chatgptPlanType": {
      "type": [
        "string",
        "null"
      ]
    }
  }
}