home / mytown-research

Vendor awards, contracts and payments (federal + local, DO NOT SUM)

Search FEDERAL awards and LOCALLY published contract/payment records by vendor name. These have different financial meanings and must not be added together. ⚠ FEDERAL ROWS ARE NOT SPENDING BY THE LISTED PLACE. When source_level = 'federal_award' the place reflects where USAspending geographically associated the award (place of performance or recipient location) — that local government did not fund, approve, or purchase it. The exact geolocation method varies by source record READ `payer_level`: `federal` means USAspending geographically associated the award with that place (place of performance or recipient location) and the local government did NOT fund, approve or purchase it; `municipal` means the local government published the record itself, so the place IS the payer. Filter on payer_level before writing "town X paid Y". ⚠ READ `record_type` and NEVER sum across values: federal_contract/federal_grant are obligations, 'contract' is a contract value (often a ceiling, and amendments may replace rather than add to a prior figure), 'expenditure'/'disbursement' are closer to money actually paid. ⚠ VENDOR MATCH IS A SUBSTRING, so short names produce false positives ("axon" also matches "Saxon"). Check payee_raw on every row. ⚠ SHOWING ONLY THE 500 LARGEST MATCHES — this is not a complete result set and its sum is not a total. Run "vendor totals by record type" for full counts before quoting anything.

Custom SQL query returning 5 rows (hide)

SELECT
  m.name AS place_name,
  m.kind AS place_type,
  gp.state,
  CASE WHEN gp.source = 'usaspending' THEN 'federal_award'
       ELSE 'local_record' END AS source_level,
  gp.payer_level,
  gp.record_type,
  gp.payee AS payee_raw,
  gp.amount,
  gp.txn_date,
  gp.end_date,
  gp.category,
  gp.purpose,
  gp.funding_source,
  gp.source,
  gp.external_id,
  gp.source_url,
  gp.muni_id
FROM gov_payments gp
LEFT JOIN municipalities m ON m.id = gp.muni_id
WHERE trim(COALESCE(:vendor,'')) <> ''
  AND lower(gp.payee) LIKE '%' || lower(trim(:vendor)) || '%'
ORDER BY CAST(NULLIF(replace(replace(gp.amount,'$',''),',',''),'') AS REAL) DESC
LIMIT 500

Query parameters

Edit SQL

This data as json, CSV

place_nameplace_typestatesource_levelpayer_levelrecord_typepayee_rawamounttxn_dateend_datecategorypurposefunding_sourcesourceexternal_idsource_urlmuni_id
Miami-Dade County city FL federal_award federal federal_contract MAXON GROUPE, LLC 223498.0 2015-09-29   Department of Veterans Affairs   Department of Veterans Affairs usaspending usa:CONT_AWD_VA24815P3243_3600_-NONE-_-NONE- https://www.usaspending.gov/award/CONT_AWD_VA24815P3243_3600_-NONE-_-NONE- 10
New Orleans city LA local_record municipal contract Axon Enterprise, Inc. 0.0 2018-11-14 2019-11-13 POLICE PD8142414.0   nola-city-contract nola-city-contract:1034df559a426f2886c2 https://contracts.nola.gov/pdfs/K181193 Axon Enterprise Inc.pdf 12
New Orleans city LA local_record municipal contract Axon Enterprise, Inc.         K17036 Taser International Inc Amd 2.pdf   nola-city-contract nola-city-contract:8ddc966fc5b711f465ba https://contracts.nola.gov/pdfs/K17036 Taser International Inc Amd 2.pdf 12
New Orleans city LA local_record municipal contract Axon Enterprise, Inc.         K131236 Taser International NOPD Body Worn Cameras.pdf   nola-city-contract nola-city-contract:d96c12e61916d3719518 https://contracts.nola.gov/pdfs/K131236 Taser International NOPD Body Worn Cameras.pdf 12
New Orleans city LA local_record municipal contract Axon Enterprise, Inc.         K15126 Taser International NOPD BodyWorn Cameras.pdf   nola-city-contract nola-city-contract:65941d3a689870e17c4b https://contracts.nola.gov/pdfs/K15126 Taser International NOPD BodyWorn Cameras.pdf 12
Powered by Datasette · Queries took 1545.016ms