{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/dexcom/refs/heads/main/json-structure/dexcom-api-token-response-structure.json", "name": "TokenResponse", "description": "TokenResponse schema from Dexcom Developer API", "type": "object", "properties": { "access_token": { "type": "string", "description": "Bearer token used in the `Authorization` header for subsequent requests." }, "expires_in": { "type": "int32", "description": "Lifetime in seconds of the access token.", "example": 7200 }, "token_type": { "type": "string", "example": "Bearer" }, "refresh_token": { "type": "string", "description": "Refresh token used to obtain a new access token." } } }