config (2 keys)
{
"dataset_id": "psed_1990_2012",
"sql": "SELECT\n 'pmsc_abuse_allegation' AS construct_id,\n LOWER(\"Country Code\") AS entity_id,\n \"Year\" AS time_value,\n COUNT(*) AS value_numeric,\n 'country-year' AS unit_of_analysis\nFROM dataset\nWHERE (\n COALESCE(\"Allegations Of Abuse - Physical\", 0)\n + COALESCE(\"Allegations Of Abuse - Environmental\", 0)\n + COALESCE(\"Allegations Of Abuse - Labor\", 0)\n + COALESCE(\"Allegations Of Abuse - Development\", 0)\n + COALESCE(\"Allegations Of Abuse - Health\", 0)\n) \u003e 0\n AND \"Country Code\" IS NOT NULL\n AND \"Year\" BETWEEN 1990 AND 2012\nGROUP BY LOWER(\"Country Code\"), \"Year\"\n"
}