action datasette_query { label: "Execute a SQLite SQL query against the content database" description: "Accepts SQLite SQL query, returns JSON. Does not allow PRAGMA statements." provider: datasette method: GET path: "/content.json" encoding: json input: { type: "object" properties: { _shape: { type: "string" enum: ["array"] } sql: { type: "string" } } required: ["_shape", "sql"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }