Crystal Reports · JSON Structure

Crystal Reports Group Condition Structure

A group condition defining how report data is grouped

Type: object Properties: 2
Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

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

Properties

field direction

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-group-condition-structure.json",
  "name": "GroupCondition",
  "description": "A group condition defining how report data is grouped",
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "description": "Field used for grouping",
      "example": "Country"
    },
    "direction": {
      "type": "string",
      "description": "Sort direction of the group",
      "enum": [
        "Ascending",
        "Descending"
      ],
      "example": "Ascending"
    }
  }
}