{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "IterativeCalculationSettings", "type": "object", "description": "Settings to control how circular dependencies are resolved with iterative calculation.", "properties": { "maxIterations": { "type": "integer", "description": "When iterative calculation is enabled, the maximum number of calculation rounds to perform." }, "convergenceThreshold": { "type": "number", "description": "When iterative calculation is enabled and successive results differ by less than this threshold value, the calculation rounds stop." } } }