{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Measure", "type": "object", "description": "A DAX measure defined on a table", "properties": { "name": { "type": "string", "description": "The name of the measure" }, "expression": { "type": "string", "description": "The DAX expression for the measure" }, "formatString": { "type": "string", "description": "Optional format string" }, "isHidden": { "type": "boolean", "description": "Whether the measure is hidden in reports" } } }