{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RefreshToken", "title": "RefreshToken", "externalDocs": { "url": "http://developer.xero.com" }, "type": "object", "properties": { "grant_type": { "description": "Xero grant type", "type": "string" }, "refresh_token": { "description": "refresh token provided during authentication flow", "type": "string" }, "client_id": { "description": "client id for Xero app", "type": "string" }, "client_secret": { "description": "client secret for Xero app 2", "type": "string" } } }