Document table JSON extras from metadata

This commit is contained in:
Simon Willison 2026-06-08 20:56:00 -07:00
commit 111eeaf370
3 changed files with 133 additions and 0 deletions

View file

@ -235,6 +235,101 @@ query string arguments:
Only available if the :ref:`setting_trace_debug` setting is enabled.
.. _json_api_extra:
Expanding table JSON responses
------------------------------
Table JSON responses can be expanded with one or more ``?_extra=`` parameters.
These can be repeated or comma-separated:
::
?_extra=columns&_extra=count,next_url
The available table extras are listed below.
.. [[[cog
from json_api_doc import table_extras
table_extras(cog)
.. ]]]
.. list-table::
:header-rows: 1
* - Extra
- Description
* - ``count``
- Total count of rows matching these filters (May execute additional queries.)
* - ``count_sql``
- SQL query used to calculate the total count
* - ``facet_results``
- Results of facets calculated against this data (May execute additional queries.)
* - ``facets_timed_out``
- Facet calculations that timed out
* - ``suggested_facets``
- Suggestions for facets that might return interesting results (May execute additional queries.)
* - ``human_description_en``
- Human-readable description of the filters
* - ``next_url``
- Full URL for the next page of results
* - ``columns``
- Column names returned by this query
* - ``all_columns``
- All columns in the table, regardless of _col/_nocol filtering
* - ``primary_keys``
- Primary keys for this table
* - ``display_columns``
- Column metadata used by the HTML table display
* - ``display_rows``
- Row data formatted for the HTML table display
* - ``render_cell``
- Rendered HTML for each cell using the render_cell plugin hook
* - ``debug``
- Extra debug information
* - ``request``
- Full information about the request
* - ``query``
- Details of the underlying SQL query
* - ``column_types``
- Column type assignments for this table
* - ``set_column_type_ui``
- Column type UI metadata for this table
* - ``metadata``
- Metadata about the table and database
* - ``extras``
- Available ?_extra= blocks
* - ``database``
- Database name
* - ``table``
- Table name
* - ``database_color``
- Color assigned to the database
* - ``actions``
- Table or view actions made available by plugin hooks
* - ``filters``
- Filters object used by the HTML table interface
* - ``renderers``
- Alternative output renderers available for this table
* - ``custom_table_templates``
- Custom template names considered for this table
* - ``sorted_facet_results``
- Facet results sorted for display
* - ``table_definition``
- SQL definition for this table
* - ``view_definition``
- SQL definition for this view
* - ``is_view``
- Whether this resource is a view instead of a table
* - ``private``
- Whether this table is private to the current actor
* - ``expandable_columns``
- Foreign key columns that can be expanded with labels
* - ``form_hidden_args``
- Hidden form arguments used by the HTML table interface
.. [[[end]]]
.. _table_arguments:
Table arguments

20
docs/json_api_doc.py Normal file
View file

@ -0,0 +1,20 @@
def table_extras(cog):
from datasette.extras import ExtraScope
from datasette.views.table_extras import table_extra_registry
cog.out("\n.. list-table::\n")
cog.out(" :header-rows: 1\n\n")
cog.out(" * - Extra\n")
cog.out(" - Description\n")
for cls in table_extra_registry.public_classes_for_scope(ExtraScope.TABLE):
description = cls.description or ""
notes = []
if cls.expensive:
notes.append("May execute additional queries.")
if cls.docs_note:
notes.append(cls.docs_note)
if notes:
description = "{} ({})".format(description, " ".join(notes)).strip()
cog.out(" * - ``{}``\n".format(cls.key()))
cog.out(" - {}\n".format(description))
cog.out("\n")