OANDA · Schema

UserInfo

A representation of user information, as provided to the user themself.

ForexFX TradingCFD TradingFinancial ServicesTrading APIs

Properties

Name Type Description
username string The user-provided username.
userID integer The user's OANDA-assigned user ID.
country string The country that the user is based in.
emailAddress string The user's email address.
View JSON Schema on GitHub

JSON Schema

UserInfo.json Raw ↑
{
  "$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."
    }
  }
}