{ "$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-running-total-schema.json", "title": "RunningTotal", "description": "A running total field", "type": "object", "properties": { "name": { "type": "string", "description": "Running total field name", "example": "RunningTotal_OrderAmount" }, "field": { "type": "string", "description": "Field being totaled", "example": "Order Amount" }, "operation": { "type": "string", "description": "Aggregation operation", "example": "Sum" }, "reset_condition": { "type": "string", "description": "Condition that resets the running total", "example": "OnGroupChange" } } }