Skip to content

Commit 42af730

Browse files
author
Sergio Sanchez
committed
add title and description to canned query. related to #8. related to #9
1 parent 4b76565 commit 42af730

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

datasette/metadata.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
},
1515
"queries": {
1616
"race_ethnicity_by_agency": {
17-
"sql": "SELECT b.AGENCY_NAME as agency_name, SUM(RAE_BLACK_AFRICAN_AMERICAN) as n_black, SUM(RAE_HISPANIC_LATINO) as n_latinx, SUM(RAE_ASIAN) as n_asian, SUM(RAE_WHITE) as n_white FROM race_ethnicity as racen INNER JOIN aa_main_table as b ON b.UNIQUE_ID = racen.UNIQUE_ID GROUP BY agency_name"
17+
"sql": "SELECT b.AGENCY_NAME as agency_name, SUM(RAE_BLACK_AFRICAN_AMERICAN) as n_black, SUM(RAE_HISPANIC_LATINO) as n_latinx, SUM(RAE_ASIAN) as n_asian, SUM(RAE_WHITE) as n_white FROM race_ethnicity as racen INNER JOIN aa_main_table as b ON b.UNIQUE_ID = racen.UNIQUE_ID GROUP BY agency_name",
18+
"title": "Race / Ethnicity by Agency Name",
19+
"description_html": "Stops by race/ethnicity by agency."
1820
}
1921
}
2022
}

0 commit comments

Comments
 (0)