Salesforce · Schema

SuccessfulIDToken

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
id string
asserted_user boolean
user_id string
organization_id string
username string
nick_name string
display_name string
email string
email_verified boolean
first_name string
last_name string
timezone string
photos object
addr_street ['string', 'null']
addr_city ['string', 'null']
addr_state ['string', 'null']
addr_country string
addr_zip ['string', 'null']
mobile_phone ['string', 'null']
mobile_phone_verified boolean
is_lightning_login_user boolean
status object
urls object
active boolean
user_type string
language string
locale string
utcOffset integer
last_modified_date string
is_app_installed boolean
View JSON Schema on GitHub

JSON Schema

salesforce-successful-id-token-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "asserted_user": {
      "type": "boolean",
      "example": true
    },
    "user_id": {
      "type": "string",
      "example": "500123"
    },
    "organization_id": {
      "type": "string",
      "example": "500123"
    },
    "username": {
      "type": "string",
      "example": "example_value"
    },
    "nick_name": {
      "type": "string",
      "example": "example_value"
    },
    "display_name": {
      "type": "string",
      "example": "example_value"
    },
    "email": {
      "type": "string",
      "example": "user@example.com"
    },
    "email_verified": {
      "type": "boolean",
      "example": "user@example.com"
    },
    "first_name": {
      "type": "string",
      "example": "example_value"
    },
    "last_name": {
      "type": "string",
      "example": "example_value"
    },
    "timezone": {
      "type": "string",
      "example": "example_value"
    },
    "photos": {
      "type": "object",
      "properties": {
        "picture": {
          "type": "string",
          "example": "example_value"
        },
        "thumbnail": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "picture",
        "thumbnail"
      ]
    },
    "addr_street": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "addr_city": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "addr_state": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "addr_country": {
      "type": "string",
      "example": 42
    },
    "addr_zip": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "mobile_phone": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "mobile_phone_verified": {
      "type": "boolean",
      "example": true
    },
    "is_lightning_login_user": {
      "type": "boolean",
      "example": true
    },
    "status": {
      "type": "object",
      "properties": {
        "created_date": {
          "type": "['string', 'null']",
          "example": "example_value"
        },
        "body": {
          "type": "['string', 'null']",
          "example": "example_value"
        }
      },
      "required": [
        "created_date",
        "body"
      ]
    },
    "urls": {
      "type": "object",
      "properties": {
        "enterprise": {
          "type": "string",
          "example": "example_value"
        },
        "metadata": {
          "type": "string",
          "example": "example_value"
        },
        "partner": {
          "type": "string",
          "example": "example_value"
        },
        "rest": {
          "type": "string",
          "example": "example_value"
        },
        "sobjects": {
          "type": "string",
          "example": "example_value"
        },
        "search": {
          "type": "string",
          "example": "example_value"
        },
        "query": {
          "type": "string",
          "example": "example_value"
        },
        "recent": {
          "type": "string",
          "example": "example_value"
        },
        "tooling_soap": {
          "type": "string",
          "example": "example_value"
        },
        "tooling_rest": {
          "type": "string",
          "example": "example_value"
        },
        "profile": {
          "type": "string",
          "example": "example_value"
        },
        "feeds": {
          "type": "string",
          "example": "example_value"
        },
        "groups": {
          "type": "string",
          "example": "example_value"
        },
        "users": {
          "type": "string",
          "example": "example_value"
        },
        "feed_items": {
          "type": "string",
          "example": "example_value"
        },
        "feed_elements": {
          "type": "string",
          "example": "example_value"
        },
        "custom_domain": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "enterprise",
        "metadata",
        "partner",
        "rest",
        "sobjects",
        "search",
        "query",
        "recent",
        "tooling_soap",
        "tooling_rest",
        "profile",
        "feeds",
        "groups",
        "users",
        "feed_items",
        "feed_elements",
        "custom_domain"
      ]
    },
    "active": {
      "type": "boolean",
      "example": true
    },
    "user_type": {
      "type": "string",
      "example": "example_value"
    },
    "language": {
      "type": "string",
      "example": "example_value"
    },
    "locale": {
      "type": "string",
      "example": "example_value"
    },
    "utcOffset": {
      "type": "integer",
      "example": 10
    },
    "last_modified_date": {
      "type": "string",
      "example": "example_value"
    },
    "is_app_installed": {
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "id",
    "asserted_user",
    "user_id",
    "organization_id",
    "username",
    "nick_name",
    "display_name",
    "email",
    "email_verified",
    "first_name",
    "last_name",
    "timezone",
    "photos",
    "addr_street",
    "addr_city",
    "addr_state",
    "addr_country",
    "addr_zip",
    "mobile_phone",
    "mobile_phone_verified",
    "is_lightning_login_user",
    "status",
    "urls",
    "active",
    "user_type",
    "language",
    "locale",
    "utcOffset",
    "last_modified_date",
    "is_app_installed"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SuccessfulIDToken"
}