Crystal Reports · JSON Structure

Crystal Reports Grand Total Collection Structure

Collection of grand total summary entries

Type: object Properties: 1
Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

GrandTotalCollection is a JSON Structure definition published by Crystal Reports, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/crystal-reports/refs/heads/main/json-structure/crystal-reports-grand-total-collection-structure.json",
  "name": "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
        }
      ]
    }
  }
}