{ "$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-formula-schema.json", "title": "Formula", "description": "A formula field defined in the report", "type": "object", "properties": { "name": { "type": "string", "description": "Formula field name", "example": "FullAddress" }, "text": { "type": "string", "description": "Formula expression text", "example": "{Customer.Address1} & \", \" & {Customer.City}" } } }