Google Identity Platform User Record

Schema for a user record in Google Identity Platform, representing an authenticated user with their profile information, provider data, and authentication state.

AuthenticationGoogle CloudIdentityMulti-TenancyOpenID ConnectSAML

Properties

Name Type Description
localId string The unique user ID assigned by Identity Platform
email string The user's email address
emailVerified boolean Whether the user's email has been verified
displayName string The user's display name
photoUrl string URL of the user's profile photo
phoneNumber string The user's phone number in E.164 format
disabled boolean Whether the user account is disabled
providerUserInfo array Linked identity provider accounts
mfaInfo array Multi-factor authentication enrollments
tenantId string The tenant ID if the user belongs to a specific tenant
createdAt string Account creation timestamp in milliseconds since epoch
lastLoginAt string Last sign-in timestamp in milliseconds since epoch
customAttributes string Custom claims JSON string set via Admin SDK
View JSON Schema on GitHub

JSON Schema

google-identity-platform-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cloud.google.com/schemas/identity-platform/user.json",
  "title": "Google Identity Platform User Record",
  "description": "Schema for a user record in Google Identity Platform, representing an authenticated user with their profile information, provider data, and authentication state.",
  "type": "object",
  "required": ["localId"],
  "properties": {
    "localId": {
      "type": "string",
      "description": "The unique user ID assigned by Identity Platform"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "The user's email address"
    },
    "emailVerified": {
      "type": "boolean",
      "description": "Whether the user's email has been verified"
    },
    "displayName": {
      "type": "string",
      "description": "The user's display name"
    },
    "photoUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL of the user's profile photo"
    },
    "phoneNumber": {
      "type": "string",
      "description": "The user's phone number in E.164 format"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the user account is disabled",
      "default": false
    },
    "providerUserInfo": {
      "type": "array",
      "description": "Linked identity provider accounts",
      "items": {
        "$ref": "#/$defs/ProviderInfo"
      }
    },
    "mfaInfo": {
      "type": "array",
      "description": "Multi-factor authentication enrollments",
      "items": {
        "$ref": "#/$defs/MfaEnrollment"
      }
    },
    "tenantId": {
      "type": "string",
      "description": "The tenant ID if the user belongs to a specific tenant"
    },
    "createdAt": {
      "type": "string",
      "description": "Account creation timestamp in milliseconds since epoch"
    },
    "lastLoginAt": {
      "type": "string",
      "description": "Last sign-in timestamp in milliseconds since epoch"
    },
    "customAttributes": {
      "type": "string",
      "description": "Custom claims JSON string set via Admin SDK"
    }
  },
  "$defs": {
    "ProviderInfo": {
      "type": "object",
      "description": "Information about a linked identity provider",
      "properties": {
        "providerId": {
          "type": "string",
          "description": "The provider identifier (e.g., google.com, facebook.com, password)"
        },
        "federatedId": {
          "type": "string",
          "description": "The user's unique ID at the provider"
        },
        "email": {
          "type": "string",
          "format": "email"
        },
        "displayName": {
          "type": "string"
        },
        "photoUrl": {
          "type": "string",
          "format": "uri"
        }
      }
    },
    "MfaEnrollment": {
      "type": "object",
      "description": "A multi-factor authentication enrollment",
      "properties": {
        "mfaEnrollmentId": {
          "type": "string",
          "description": "The MFA enrollment ID"
        },
        "phoneInfo": {
          "type": "string",
          "description": "Phone number for SMS-based MFA"
        },
        "totpInfo": {
          "type": "object",
          "description": "TOTP configuration for authenticator app MFA"
        },
        "enrolledAt": {
          "type": "string",
          "format": "date-time",
          "description": "When this factor was enrolled"
        },
        "displayName": {
          "type": "string",
          "description": "Friendly name for this MFA enrollment"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/google-identity-platform-user"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.