{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MetricDistribution",
"title": "MetricDistribution",
"type": "object",
"properties": {
"basis": {
"type": "string",
"description": "This field returns the basis, or the method, by which the metric rating is calculated."
},
"data": {
"type": "array",
"description": "This field returns a list of name/value pairs, where the name indicates the distribution being rated and the value indicates the count of seller transactions that meet the distribution criteria.",
"items": {
"$ref": "#/components/schemas/Distribution"
}
}
},
"description": "This complex data type describes the metric distribution by basis."
}