toolsOzoneReportGetHistoricalStats top-level constant

Map<String, dynamic> const toolsOzoneReportGetHistoricalStats

tools.ozone.report.getHistoricalStats

Implementation

const toolsOzoneReportGetHistoricalStats = <String, dynamic>{
  "lexicon": 1,
  "id": "tools.ozone.report.getHistoricalStats",
  "defs": {
    "main": {
      "type": "query",
      "description":
          "Get historical daily report statistics. Returns a paginated list of daily stat snapshots, newest first. Filter by queue, moderator, or report type.",
      "parameters": {
        "type": "params",
        "properties": {
          "queueId": {
            "type": "integer",
            "description":
                "Filter stats by queue. Use -1 for unqueued reports.",
          },
          "moderatorDid": {
            "type": "string",
            "format": "did",
            "description": "Filter stats by moderator DID.",
          },
          "reportTypes": {
            "type": "array",
            "description": "Filter stats by report types.",
            "items": {"type": "string"},
          },
          "startDate": {
            "type": "string",
            "format": "datetime",
            "description": "Earliest date to include (inclusive).",
          },
          "endDate": {
            "type": "string",
            "format": "datetime",
            "description": "Latest date to include (inclusive).",
          },
          "limit": {
            "type": "integer",
            "description": "Maximum number of entries to return.",
            "default": 30,
            "minimum": 1,
            "maximum": 100,
          },
          "cursor": {"type": "string", "description": "Pagination cursor."},
        },
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["stats"],
          "properties": {
            "stats": {
              "type": "array",
              "items": {
                "type": "ref",
                "ref": "tools.ozone.report.defs#historicalStats",
              },
            },
            "cursor": {"type": "string"},
          },
        },
      },
    },
  },
};