action appcenter_analytics_crash_counts { label: "Available for UWP apps only." description: "Count of crashes by day in the time range based the selected versions. Available for UWP apps only." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/crash_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: "object" properties: { count: { type: "integer" format: "int64" description: "Total crash count." } crashes: { type: "array" description: "The total crash count for day." items: { properties: { count: { type: "integer" format: "int64" description: "Count of the object." } datetime: { type: "string" description: "The ISO 8601 datetime." } } } } } } }