Crystal Reports · JSON Structure

Crystal Reports Summary Field Structure

A summary or aggregate field in the report

Type: object Properties: 3
Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

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

Properties

name operation field

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-summary-field-structure.json",
  "name": "SummaryField",
  "description": "A summary or aggregate field in the report",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Summary field name",
      "example": "Sum of Order Amount"
    },
    "operation": {
      "type": "string",
      "description": "Aggregation operation",
      "example": "Sum"
    },
    "field": {
      "type": "string",
      "description": "Source field being summarized",
      "example": "Order Amount"
    }
  }
}