Amplitude · Schema

ExperimentListResponse

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
experiments array Array of experiment objects.
nextCursor string A cursor for fetching the next page.
View JSON Schema on GitHub

JSON Schema

amplitude-experimentlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentListResponse",
  "title": "ExperimentListResponse",
  "type": "object",
  "properties": {
    "experiments": {
      "type": "array",
      "description": "Array of experiment objects.",
      "items": {
        "$ref": "#/components/schemas/Experiment"
      }
    },
    "nextCursor": {
      "type": "string",
      "description": "A cursor for fetching the next page."
    }
  }
}