{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/dexcom/refs/heads/main/json-schema/dexcom-api-token-response-schema.json", "title": "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": "integer", "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." } } }