Properties
| Name | Type | Description |
|---|---|---|
| geo | object | Describes the various levels in which the benchmark data is available. |
| benchmarkLevel | string | Describes benchmark Level. |
| netTotal | object | Median amount spent by the user in a specified category or merchant |
| numberOfPeers | integer | The total number of peers in the segment to arrive the benchmark amount |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BasicBenchMark",
"title": "BasicBenchMark",
"properties": {
"geo": {
"readOnly": true,
"description": "Describes the various levels in which the benchmark data is available. ",
"allOf": [
{
"$ref": "#/components/schemas/Geo"
}
]
},
"benchmarkLevel": {
"type": "string",
"description": "Describes benchmark Level. ",
"readOnly": true
},
"netTotal": {
"description": "Median amount spent by the user in a specified category or merchant",
"allOf": [
{
"$ref": "#/components/schemas/Money"
}
],
"readOnly": true
},
"numberOfPeers": {
"type": "integer",
"description": "The total number of peers in the segment to arrive the benchmark amount",
"readOnly": true
}
},
"required": [
"geo",
"isIncome",
"netTotal",
"numberOfPeers"
]
}