action appcenter_analytics_crash_group_model_counts { label: "Available for UWP apps only." description: "Top models 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}/models" 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" } models: { type: "array" items: { type: "object" properties: { crash_count: { type: "integer" format: "int64" description: "Count of model." } model_name: { type: "string" description: "Model's name." } } } } } } }