{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActiveMetricRestriction", "title": "ActiveMetricRestriction", "description": "A metric actively restricted in creating the report.", "properties": { "metricName": { "description": "The name of the restricted metric.", "type": "string", "example": "Example Name" }, "restrictedMetricTypes": { "description": "The reason for this metric's restriction.", "items": { "enum": [ "RESTRICTED_METRIC_TYPE_UNSPECIFIED", "COST_DATA", "REVENUE_DATA" ], "type": "string" }, "type": "array" } }, "type": "object" }