action microcks_get_conformance_metrics_aggregation { label: "Get aggregation of conformance metrics" provider: microcks method: GET path: "/metrics/conformance/aggregate" encoding: json output: { type: "array" items: { type: "object" description: "Value of a metric with an associated weight" required: ["name", "weight", "value"] properties: { name: { type: "string" description: "Metric name or serie name" } value: { type: "integer" description: "The value of this metric" } weight: { type: "integer" description: "Weight of this metric value (typically a percentage)" } } } } }