Dropbox · Schema

AccountResponse

Documents

Properties

Name Type Description
account_id string _t__Account::ACCOUNT_ID
email_address string _t__Account::EMAIL_ADDRESS
is_locked boolean _t__Account::IS_LOCKED
is_paid_hs boolean _t__Account::IS_PAID_HS
is_paid_hf boolean _t__Account::IS_PAID_HF
quotas object
callback_url string _t__Account::CALLBACK_URL
role_code string _t__Account::ROLE_CODE
team_id string _t__Account::TEAM_ID
locale string _t__Account::LOCALE
View JSON Schema on GitHub

JSON Schema

dropbox-accountresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountResponse",
  "title": "AccountResponse",
  "properties": {
    "account_id": {
      "description": "_t__Account::ACCOUNT_ID",
      "type": "string"
    },
    "email_address": {
      "description": "_t__Account::EMAIL_ADDRESS",
      "type": "string"
    },
    "is_locked": {
      "description": "_t__Account::IS_LOCKED",
      "type": "boolean"
    },
    "is_paid_hs": {
      "description": "_t__Account::IS_PAID_HS",
      "type": "boolean"
    },
    "is_paid_hf": {
      "description": "_t__Account::IS_PAID_HF",
      "type": "boolean"
    },
    "quotas": {
      "$ref": "#/components/schemas/AccountResponseQuotas"
    },
    "callback_url": {
      "description": "_t__Account::CALLBACK_URL",
      "type": "string",
      "nullable": true
    },
    "role_code": {
      "description": "_t__Account::ROLE_CODE",
      "type": "string",
      "nullable": true
    },
    "team_id": {
      "description": "_t__Account::TEAM_ID",
      "type": "string",
      "nullable": true
    },
    "locale": {
      "description": "_t__Account::LOCALE",
      "type": "string",
      "nullable": true
    }
  },
  "type": "object",
  "x-internal": true
}