Skip to content

Commit

Permalink
Add saved_queries to example semantic_manifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
MiConnell authored Aug 12, 2024
1 parent 080ba77 commit 623f874
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion website/docs/docs/dbt-cloud-apis/sl-manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,36 @@ Top-level keys for the semantic manifest are:
],
"metadata": null,
"dsi_package_version": {}
}
},
"saved_queries": [
{
"name": "name of the saved query",
"query_params": {
"metrics": [
"metrics used in the saved query"
],
"group_by": [
"TimeDimension('model_primary_key__date_column', 'day')",
"Dimension('model_primary_key__metric_one')",
"Dimension('model__dimension')"
],
"where": null
},
"description": "Description of the saved query",
"metadata": null,
"label": null,
"exports": [
{
"name": "saved_query_name",
"config": {
"export_as": "view",
"schema_name": null,
"alias": null
}
}
]
}
]
}
]
}
Expand Down

0 comments on commit 623f874

Please sign in to comment.