action appcenter_analytics_crash_group_operating_system_counts { label: "Available for UWP apps only." description: "Top OSes of the selected crash group with selected version. Available for UWP apps only." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/crash_groups/{crash_group_id}/operating_systems" encoding: json input: { type: "object" properties: { "$top": { type: "integer" format: "int64" } app_name: { type: "string" } crash_group_id: { type: "string" format: "string" } owner_name: { type: "string" } version: { type: "string" format: "string" } } required: ["app_name", "crash_group_id", "owner_name", "version"] additionalProperties: false } output: { type: "object" properties: { crash_count: { type: "integer" format: "int64" } operating_systems: { type: "array" items: { type: "object" properties: { crash_count: { type: "integer" format: "int64" description: "Count of OS." } operating_system_name: { type: "string" description: "OS name." } } } } } } }