action appcenter_analytics_list_device_property_values { label: "Analytics_ListDevicePropertyValues" description: "Get list of device property values." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/audiences/metadata/device_properties/{property_name}/values" encoding: json input: { type: "object" properties: { app_name: { type: "string" } contains: { type: "string" } owner_name: { type: "string" } property_name: { type: "string" } } required: ["app_name", "owner_name", "property_name"] additionalProperties: false } output: { description: "List of device property values." required: ["values"] properties: { values: { type: "array" description: "List of device property values." items: { type: "string" } } } } }