Skip to content

Commit

Permalink
feature: add properties to json schema (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samox committed May 8, 2023
1 parent 23f3e32 commit 53b8244
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions json-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,25 @@
"KPIColumnName": {
"type": "string",
"description": "The name of the column containing KPI information"
},
"dateColumn": {
"type": "string",
"description": "The name of the column containing the date (YYYY-MM-DD)"
},
"timeGrain": {
"type": "array",
"items": {
"type": "string",
"enum": ["day", "week", "month", "year"]
},
"description": "The timegrain for the metric data (day, week, or month)"
},
"dimensions": {
"type": "array",
"items": {
"type": "string"
},
"description": "The dimensions used for the metric data"
}
},
"required": [
Expand Down

0 comments on commit 53b8244

Please sign in to comment.