action apple_apps_perf_power_metrics_get_to_many_related { label: "apps-perfPowerMetrics-get_to_many_related" provider: apple method: GET path: "/v1/apps/{id}/perfPowerMetrics" encoding: json input: { type: "object" properties: { "filter[deviceType]": { type: "array" items: { type: "string" } } "filter[metricType]": { type: "array" items: { type: "string" enum: ["DISK", "HANG", "BATTERY", "LAUNCH", "MEMORY", "ANIMATION", "TERMINATION"] } } "filter[platform]": { type: "array" items: { type: "string" enum: ["IOS"] } } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "array" items: { type: "object" required: ["links", "id", "type"] properties: { attributes: { type: "object" properties: { deviceType: { type: "string" } metricType: { type: "string" enum: ["DISK", "HANG", "BATTERY", "LAUNCH", "MEMORY", "ANIMATION", "TERMINATION"] } platform: { type: "string" enum: ["IOS"] } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } type: { type: "string" enum: ["perfPowerMetrics"] } } } } links: { type: "object" required: ["self"] properties: { first: { type: "string" format: "uri-reference" } next: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } meta: { type: "object" required: ["paging"] properties: { paging: { type: "object" required: ["limit", "total"] properties: { limit: { type: "integer" } total: { type: "integer" } } } } } } } }