FullStory · Schema

SegmentList

Paginated list of segments

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
segments array Array of segment objects
pagination_token string Token to retrieve the next page of results. Absent when no more pages are available.
View JSON Schema on GitHub

JSON Schema

fullstory-segmentlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SegmentList",
  "title": "SegmentList",
  "type": "object",
  "description": "Paginated list of segments",
  "properties": {
    "segments": {
      "type": "array",
      "description": "Array of segment objects",
      "items": {
        "$ref": "#/components/schemas/Segment"
      }
    },
    "pagination_token": {
      "type": "string",
      "description": "Token to retrieve the next page of results. Absent when no more pages are available."
    }
  }
}