Amplitude · Schema

FlagListResponse

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
flags array Array of feature flag objects.
nextCursor string A cursor for fetching the next page of results.
View JSON Schema on GitHub

JSON Schema

amplitude-flaglistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlagListResponse",
  "title": "FlagListResponse",
  "type": "object",
  "properties": {
    "flags": {
      "type": "array",
      "description": "Array of feature flag objects.",
      "items": {
        "$ref": "#/components/schemas/Flag"
      }
    },
    "nextCursor": {
      "type": "string",
      "description": "A cursor for fetching the next page of results."
    }
  }
}