Amplitude · Schema

UserMapResponse

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
code integer The HTTP status code of the response.
success boolean Whether the mapping operation was successful.
View JSON Schema on GitHub

JSON Schema

amplitude-usermapresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserMapResponse",
  "title": "UserMapResponse",
  "type": "object",
  "properties": {
    "code": {
      "type": "integer",
      "description": "The HTTP status code of the response.",
      "example": 200
    },
    "success": {
      "type": "boolean",
      "description": "Whether the mapping operation was successful."
    }
  }
}