action semantria_get_statistic {
label: "Retrieve usage statistics"
description: "This method retrieves overall and per configuration usage statistics for specific timeframe. Statistics ordered per available configurations. Available interval values are current hour, day, week, month and year."
provider: semantria
method: GET
path: "/statistics.{content_type}"
encoding: json
input: {
type: "object"
properties: {
config_id: {
type: "string"
}
content_type: {
type: "string"
}
interval: {
type: "string"
}
}
required: ["content_type"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}