{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "UserInfo", "description": "A representation of user information, as provided to the user themself.", "type": "object", "properties": { "username": { "type": "string", "description": "The user-provided username." }, "userID": { "type": "integer", "description": "The user's OANDA-assigned user ID." }, "country": { "type": "string", "description": "The country that the user is based in." }, "emailAddress": { "type": "string", "description": "The user's email address." } } }