Amplitude · Schema

UserSearchResult

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
matches array Array of matching users with their identifiers.
View JSON Schema on GitHub

JSON Schema

amplitude-usersearchresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserSearchResult",
  "title": "UserSearchResult",
  "type": "object",
  "properties": {
    "matches": {
      "type": "array",
      "description": "Array of matching users with their identifiers.",
      "items": {
        "type": "object",
        "properties": {
          "user_id": {
            "type": "string",
            "description": "The user's user_id."
          },
          "amplitude_id": {
            "type": "integer",
            "format": "int64",
            "description": "The user's Amplitude internal ID."
          }
        }
      }
    }
  }
}