Umami · JSON Structure

Umami Team List Structure

Paginated list of teams

Type: object Properties: 4
Cookieless TrackingOpen SourcePrivacyWeb AnalyticsWebsite Analytics

Umami Team List Structure is a JSON Structure definition published by Umami, describing 4 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

data count page pageSize

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/umami/refs/heads/main/json-structure/umami-team-list-structure.json",
  "title": "TeamList",
  "description": "Paginated list of teams",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "ref": "Team"
      },
      "description": "Team records"
    },
    "count": {
      "type": "integer",
      "description": "Total number of records"
    },
    "page": {
      "type": "integer",
      "description": "Current page number"
    },
    "pageSize": {
      "type": "integer",
      "description": "Records per page"
    }
  }
}