json.schema.dataInsight.custom.summaryCard.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/dataInsight/custom/summaryCard.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SummaryCard",
"description": "Summary Card",
"type": "object",
"javaType": "org.openmetadata.schema.dataInsight.custom.SummaryCard",
"properties": {
"type": {
"description": "Type of the data insight chart.",
"type": "string",
"enum": [
"SummaryCard"
],
"default": "SummaryCard"
},
"function": {
"$ref": "dataInsightCustomChart.json#/definitions/function"
},
"field": {
"description": "Filter field for the data insight chart.",
"type": "string"
},
"filter": {
"description": "Filter value for the data insight chart.",
"type": "string"
},
"treeFilter": {
"description": "Tree filter value for the data insight chart. Needed for UI to recreate advance filter tree.",
"type": "string"
},
"formula": {
"description": "Formula for the data insight chart calculation.",
"type": "string"
}
},
"additionalProperties": false
}