Crystal Reports · Schema

GrandTotalCollection

Collection of grand total summary entries

Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

Properties

Name Type Description
value array Array of grand total entries
View JSON Schema on GitHub

JSON Schema

crystal-reports-grand-total-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/crystal-reports/refs/heads/main/json-schema/crystal-reports-grand-total-collection-schema.json",
  "title": "GrandTotalCollection",
  "description": "Collection of grand total summary entries",
  "type": "object",
  "properties": {
    "value": {
      "type": "array",
      "description": "Array of grand total entries",
      "items": {
        "$ref": "#/components/schemas/GrandTotal"
      },
      "example": [
        {
          "SumOfOrderAmount": 548290.75,
          "CountOfOrders": 1542,
          "AverageOrderAmount": 355.57
        }
      ]
    }
  }
}