action appcenter_analytics_session_counts { label: "Analytics_SessionCounts" description: "Count of sessions in the time range." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/session_counts" encoding: json input: { type: "object" properties: { app_name: { type: "string" } end: { type: "string" format: "date-time" } owner_name: { type: "string" } start: { type: "string" format: "date-time" } versions: { type: "array" items: { type: "string" } } } required: ["app_name", "owner_name", "start"] additionalProperties: false } output: { type: "array" items: { properties: { count: { type: "integer" format: "int64" description: "Count of the object." } datetime: { type: "string" description: "The ISO 8601 datetime." } } } } }