Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
21 changes: 19 additions & 2 deletions _docs/latest/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1463,6 +1463,9 @@
"metabase-enterprise.metabot-v3.tools.api.column" : {
"type" : "object",
"properties" : {
"database_type" : {
"type" : "string"
},
"description" : {
"type" : "string"
},
Expand Down Expand Up @@ -2641,7 +2644,7 @@
"properties" : {
"field_granularity" : {
"type" : "string",
"enum" : [ "day", "week", "month", "quarter", "year" ]
"enum" : [ "minute", "hour", "day", "week", "month", "quarter", "year", "day-of-week" ]
},
"field_id" : {
"type" : "string"
Expand Down Expand Up @@ -3085,6 +3088,9 @@
"metabase-enterprise.metabot-v3.tools.api.table-result" : {
"type" : "object",
"properties" : {
"database_engine" : {
"type" : "string"
},
"id" : {
"type" : "integer"
},
Expand All @@ -3100,6 +3106,9 @@
"$ref" : "#/components/schemas/metabase-enterprise.metabot-v3.tools.api.table-result"
}
},
"related_by" : {
"type" : "string"
},
"display_name" : {
"type" : "string"
},
Expand All @@ -3123,7 +3132,7 @@
"type" : "string"
}
},
"required" : [ "id", "type", "name", "display_name", "database_id", "fields" ]
"required" : [ "id", "type", "name", "display_name", "database_id", "database_engine", "fields" ]
},
"metabase-enterprise.metabot-v3.tools.api.temporal-extraction-filter" : {
"allOf" : [ {
Expand Down Expand Up @@ -4351,6 +4360,14 @@
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.UnnamedAggregation"
} ]
},
"metabase.legacy-mbql.schema.AggregationArg" : {
"description" : "Schema for the argument to an aggregation clause like `:sum`.\n\n Strings are allowed as literals here, unlike at the top level as `::Expressions`, so `::FieldOrExpressionDef` is\n not enough. However, nested aggregations are not allowed here, so we can't use `::ExpressionArg` either. (#66199)",
"anyOf" : [ {
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.FieldOrExpressionDef"
}, {
"type" : "string"
} ]
},
"metabase.legacy-mbql.schema.AggregationOptionsOptions" : {
"description" : "Additional options for any aggregation clause when wrapping it in `:aggregation-options`.",
"type" : "object",
Expand Down
9 changes: 8 additions & 1 deletion _docs/latest/data-modeling/editable-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,16 @@ Admins can enable editable table data in Metabase.

![Edit table](./images/edit-table.png)

## Databases that support editable tables

Currently, editable tables are available for the following databases:

- PostgreSQL
- MySQL
- Metabase Sample Database

## Setting up editable tables

_Currently, editable table data is only available for PostgreSQL and MySQL._

To set up table editing, admins can:

Expand Down
2 changes: 1 addition & 1 deletion _docs/latest/installation-and-operation/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Metabase will print out the help text for available commands.

## `api-documentation`

Generate an HTML and JSON files for all API endpoints.
Generate an HTML file and a JSON file for Scalar docs for the Metabase API.

## `command-documentation`

Expand Down
21 changes: 19 additions & 2 deletions _docs/v0.57/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1463,6 +1463,9 @@
"metabase-enterprise.metabot-v3.tools.api.column" : {
"type" : "object",
"properties" : {
"database_type" : {
"type" : "string"
},
"description" : {
"type" : "string"
},
Expand Down Expand Up @@ -2641,7 +2644,7 @@
"properties" : {
"field_granularity" : {
"type" : "string",
"enum" : [ "day", "week", "month", "quarter", "year" ]
"enum" : [ "minute", "hour", "day", "week", "month", "quarter", "year", "day-of-week" ]
},
"field_id" : {
"type" : "string"
Expand Down Expand Up @@ -3085,6 +3088,9 @@
"metabase-enterprise.metabot-v3.tools.api.table-result" : {
"type" : "object",
"properties" : {
"database_engine" : {
"type" : "string"
},
"id" : {
"type" : "integer"
},
Expand All @@ -3100,6 +3106,9 @@
"$ref" : "#/components/schemas/metabase-enterprise.metabot-v3.tools.api.table-result"
}
},
"related_by" : {
"type" : "string"
},
"display_name" : {
"type" : "string"
},
Expand All @@ -3123,7 +3132,7 @@
"type" : "string"
}
},
"required" : [ "id", "type", "name", "display_name", "database_id", "fields" ]
"required" : [ "id", "type", "name", "display_name", "database_id", "database_engine", "fields" ]
},
"metabase-enterprise.metabot-v3.tools.api.temporal-extraction-filter" : {
"allOf" : [ {
Expand Down Expand Up @@ -4351,6 +4360,14 @@
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.UnnamedAggregation"
} ]
},
"metabase.legacy-mbql.schema.AggregationArg" : {
"description" : "Schema for the argument to an aggregation clause like `:sum`.\n\n Strings are allowed as literals here, unlike at the top level as `::Expressions`, so `::FieldOrExpressionDef` is\n not enough. However, nested aggregations are not allowed here, so we can't use `::ExpressionArg` either. (#66199)",
"anyOf" : [ {
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.FieldOrExpressionDef"
}, {
"type" : "string"
} ]
},
"metabase.legacy-mbql.schema.AggregationOptionsOptions" : {
"description" : "Additional options for any aggregation clause when wrapping it in `:aggregation-options`.",
"type" : "object",
Expand Down
9 changes: 8 additions & 1 deletion _docs/v0.57/data-modeling/editable-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,16 @@ Admins can enable editable table data in Metabase.

![Edit table](./images/edit-table.png)

## Databases that support editable tables

Currently, editable tables are available for the following databases:

- PostgreSQL
- MySQL
- Metabase Sample Database

## Setting up editable tables

_Currently, editable table data is only available for PostgreSQL and MySQL._

To set up table editing, admins can:

Expand Down
2 changes: 1 addition & 1 deletion _docs/v0.57/installation-and-operation/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Metabase will print out the help text for available commands.

## `api-documentation`

Generate an HTML and JSON files for all API endpoints.
Generate an HTML file and a JSON file for Scalar docs for the Metabase API.

## `command-documentation`

Expand Down
6 changes: 3 additions & 3 deletions _site/docs/latest/CONTRIBUTING.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -5714,7 +5714,7 @@ <h6>Features</h6>
<a href="/features/drill-through">Drill Through</a>
<a href="/features/collections">Collections</a>
<a href="/features/usage-analytics">Usage analytics</a>
<a href="/features/analytics-dashboards">Analytics dashboards</a>
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
<a href="/features/sql-editor">SQL editor</a>
<a href="/features/data-segregation">Data segregation</a>
<a href="/features/semantic-layer">Semantic layer</a>
Expand Down
6 changes: 3 additions & 3 deletions _site/docs/latest/actions/basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -5689,7 +5689,7 @@ <h6>Features</h6>
<a href="/features/drill-through">Drill Through</a>
<a href="/features/collections">Collections</a>
<a href="/features/usage-analytics">Usage analytics</a>
<a href="/features/analytics-dashboards">Analytics dashboards</a>
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
<a href="/features/sql-editor">SQL editor</a>
<a href="/features/data-segregation">Data segregation</a>
<a href="/features/semantic-layer">Semantic layer</a>
Expand Down
6 changes: 3 additions & 3 deletions _site/docs/latest/actions/custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -5774,7 +5774,7 @@ <h6>Features</h6>
<a href="/features/drill-through">Drill Through</a>
<a href="/features/collections">Collections</a>
<a href="/features/usage-analytics">Usage analytics</a>
<a href="/features/analytics-dashboards">Analytics dashboards</a>
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
<a href="/features/sql-editor">SQL editor</a>
<a href="/features/data-segregation">Data segregation</a>
<a href="/features/semantic-layer">Semantic layer</a>
Expand Down
6 changes: 3 additions & 3 deletions _site/docs/latest/actions/introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -5697,7 +5697,7 @@ <h6>Features</h6>
<a href="/features/drill-through">Drill Through</a>
<a href="/features/collections">Collections</a>
<a href="/features/usage-analytics">Usage analytics</a>
<a href="/features/analytics-dashboards">Analytics dashboards</a>
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
<a href="/features/sql-editor">SQL editor</a>
<a href="/features/data-segregation">Data segregation</a>
<a href="/features/semantic-layer">Semantic layer</a>
Expand Down
6 changes: 3 additions & 3 deletions _site/docs/latest/actions/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -5633,7 +5633,7 @@ <h6>Features</h6>
<a href="/features/drill-through">Drill Through</a>
<a href="/features/collections">Collections</a>
<a href="/features/usage-analytics">Usage analytics</a>
<a href="/features/analytics-dashboards">Analytics dashboards</a>
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
<a href="/features/sql-editor">SQL editor</a>
<a href="/features/data-segregation">Data segregation</a>
<a href="/features/semantic-layer">Semantic layer</a>
Expand Down
6 changes: 3 additions & 3 deletions _site/docs/latest/ai/metabot.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -5744,7 +5744,7 @@ <h6>Features</h6>
<a href="/features/drill-through">Drill Through</a>
<a href="/features/collections">Collections</a>
<a href="/features/usage-analytics">Usage analytics</a>
<a href="/features/analytics-dashboards">Analytics dashboards</a>
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
<a href="/features/sql-editor">SQL editor</a>
<a href="/features/data-segregation">Data segregation</a>
<a href="/features/semantic-layer">Semantic layer</a>
Expand Down
6 changes: 3 additions & 3 deletions _site/docs/latest/ai/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -5732,7 +5732,7 @@ <h6>Features</h6>
<a href="/features/drill-through">Drill Through</a>
<a href="/features/collections">Collections</a>
<a href="/features/usage-analytics">Usage analytics</a>
<a href="/features/analytics-dashboards">Analytics dashboards</a>
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
<a href="/features/sql-editor">SQL editor</a>
<a href="/features/data-segregation">Data segregation</a>
<a href="/features/semantic-layer">Semantic layer</a>
Expand Down
6 changes: 3 additions & 3 deletions _site/docs/latest/ai/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>

<div>
<span class="menu-link-heading">
Analytics dashboards
Dashboards and reporting
</span>


Expand Down Expand Up @@ -5633,7 +5633,7 @@ <h6>Features</h6>
<a href="/features/drill-through">Drill Through</a>
<a href="/features/collections">Collections</a>
<a href="/features/usage-analytics">Usage analytics</a>
<a href="/features/analytics-dashboards">Analytics dashboards</a>
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
<a href="/features/sql-editor">SQL editor</a>
<a href="/features/data-segregation">Data segregation</a>
<a href="/features/semantic-layer">Semantic layer</a>
Expand Down
Loading