Apifuse · Schema

Analytics

Usage analytics for Apifuse integrations.

Embedded IntegrationsIntegration PlatformIntegrationsiPaaSMarketplaceSaaSWorkflow Automation

Properties

Name Type Description
totalTasks integer Total number of tasks executed.
activeIntegrations integer Number of active integrations.
activeUsers integer Number of active users.
period object
View JSON Schema on GitHub

JSON Schema

apifuse-analytics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apifuse/refs/heads/main/json-schema/apifuse-analytics-schema.json",
  "title": "Analytics",
  "description": "Usage analytics for Apifuse integrations.",
  "type": "object",
  "properties": {
    "totalTasks": {
      "type": "integer",
      "description": "Total number of tasks executed.",
      "example": 15420
    },
    "activeIntegrations": {
      "type": "integer",
      "description": "Number of active integrations.",
      "example": 12
    },
    "activeUsers": {
      "type": "integer",
      "description": "Number of active users.",
      "example": 87
    },
    "period": {
      "type": "object",
      "properties": {
        "startDate": {
          "type": "string",
          "format": "date"
        },
        "endDate": {
          "type": "string",
          "format": "date"
        }
      }
    }
  }
}