This complex data type describes the metric distribution by basis.
AuctionsCommerceProductsMarketplaceFortune 500
Properties
Name
Type
Description
basis
string
This field returns the basis, or the method, by which the metric rating is calculated.
data
array
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 c
{
"$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 <b>name</b> indicates the distribution being rated and the <b>value</b> 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."
}