{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetRefreshTokenResponseContent", "title": "GetRefreshTokenResponseContent", "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string", "description": "The ID of the refresh token" }, "user_id": { "type": "string", "description": "ID of the user which can be used when interacting with other APIs.", "default": "auth0|507f1f77bcf86cd799439020" }, "created_at": { "$ref": "#/components/schemas/RefreshTokenDate" }, "idle_expires_at": { "$ref": "#/components/schemas/RefreshTokenDate" }, "expires_at": { "$ref": "#/components/schemas/RefreshTokenDate" }, "device": { "$ref": "#/components/schemas/RefreshTokenDevice" }, "client_id": { "type": "string", "description": "ID of the client application granted with this refresh token" }, "session_id": { "$ref": "#/components/schemas/RefreshTokenSessionId" }, "rotating": { "type": "boolean", "description": "True if the token is a rotating refresh token" }, "resource_servers": { "type": "array", "description": "A list of the resource server IDs associated to this refresh-token and their granted scopes", "items": { "$ref": "#/components/schemas/RefreshTokenResourceServer" } }, "refresh_token_metadata": { "$ref": "#/components/schemas/RefreshTokenMetadata" }, "last_exchanged_at": { "$ref": "#/components/schemas/RefreshTokenDate" } } }