{ "$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" } } } } }