action appcenter_analytics_session_durations_distribution { label: "Analytics_SessionDurationsDistribution" description: "Gets session duration." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/session_durations_distribution" 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: "object" properties: { average_duration: { type: "string" description: "The average session duration for current time range." } distribution: { type: "array" description: "The count of sessions in these buckets." items: { type: "object" properties: { bucket: { type: "string" description: "The bucket name." } count: { type: "integer" format: "int64" description: "The count of sessions in current bucket." } } } } previous_average_duration: { type: "string" description: "The previous average session duration for previous time range." } } } }