PostHog · Schema

ActivityLogPaginatedResponse

Response shape for paginated activity log endpoints.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array
next string
previous string
total_count integer
View JSON Schema on GitHub

JSON Schema

posthog-activitylogpaginatedresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActivityLogPaginatedResponse",
  "title": "ActivityLogPaginatedResponse",
  "type": "object",
  "description": "Response shape for paginated activity log endpoints.",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ActivityLogEntry"
      }
    },
    "next": {
      "type": "string",
      "format": "uri",
      "nullable": true
    },
    "previous": {
      "type": "string",
      "format": "uri",
      "nullable": true
    },
    "total_count": {
      "type": "integer"
    }
  },
  "required": [
    "next",
    "previous",
    "results",
    "total_count"
  ]
}