Amplitude · JSON Structure

Dashboard Rest Api User Search Result Structure

UserSearchResult schema from Amplitude Dashboard REST API

Type: object Properties: 1
A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

UserSearchResult is a JSON Structure definition published by Amplitude, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

matches

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-structure/dashboard-rest-api-user-search-result-structure.json",
  "name": "UserSearchResult",
  "description": "UserSearchResult schema from Amplitude Dashboard REST API",
  "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": "int64",
            "description": "The user's Amplitude internal ID."
          }
        }
      }
    }
  }
}