Crystal Reports · Schema

SummaryField

A summary or aggregate field in the report

Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

Properties

Name Type Description
name string Summary field name
operation string Aggregation operation
field string Source field being summarized
View JSON Schema on GitHub

JSON Schema

crystal-reports-summary-field-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-summary-field-schema.json",
  "title": "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"
    }
  }
}