{"id":21470890,"url":"https://github.com/billimarie/prosecutor-database","last_synced_at":"2026-01-27T03:37:01.856Z","repository":{"id":22417789,"uuid":"87504405","full_name":"billimarie/prosecutor-database","owner":"billimarie","description":"An open-source, community oversight dataset of all U.S. Prosecutors. Happy Hacktoberfest 🎃","archived":false,"fork":false,"pushed_at":"2025-08-14T20:10:31.000Z","size":19030,"stargazers_count":92,"open_issues_count":46,"forks_count":86,"subscribers_count":12,"default_branch":"main","last_synced_at":"2025-08-14T22:16:17.988Z","etag":null,"topics":["first-timers","government","hackathon","hacktober","hacktoberfest","hacktoberfest2020","prison","prisoners-rights","prosecutor","us-attorneys","us-elections","us-government","us-prosecutors"],"latest_commit_sha":null,"homepage":"https://billimarie.github.io/prosecutor-database","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/billimarie.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-07T04:31:00.000Z","updated_at":"2025-08-14T20:10:35.000Z","dependencies_parsed_at":"2024-12-14T21:21:08.685Z","dependency_job_id":"6796e745-c7a4-47b6-912c-aa06ac769057","html_url":"https://github.com/billimarie/prosecutor-database","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/billimarie/prosecutor-database","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billimarie%2Fprosecutor-database","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billimarie%2Fprosecutor-database/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billimarie%2Fprosecutor-database/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billimarie%2Fprosecutor-database/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/billimarie","download_url":"https://codeload.github.com/billimarie/prosecutor-database/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billimarie%2Fprosecutor-database/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28799854,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T01:07:07.743Z","status":"online","status_checked_at":"2026-01-27T02:00:07.755Z","response_time":168,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["first-timers","government","hackathon","hacktober","hacktoberfest","hacktoberfest2020","prison","prisoners-rights","prosecutor","us-attorneys","us-elections","us-government","us-prosecutors"],"created_at":"2024-11-23T09:29:39.424Z","updated_at":"2026-01-27T03:37:01.850Z","avatar_url":"https://github.com/billimarie.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# U.S. Prosecutor Database\n\u003e Last Updated: August 14th, 2025\n\n[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)\n\n## Looking For Maintainer\nThe U.S. Prosecutor Database is looking for its next maintainer. If you have a vision of how to create a public, searchable database, ledger, or chain which everyday users can interact with through a simple UI/UX front-end, please submit a PR and we'll make sure this project lives on through your contributions.\n\n---\n\n## Setting Up\n\nTo run the app locally on your machine:\n\n1. install `node` \u0026 `npm` ([see official docs](https://www.npmjs.com/get-npm))\n2. install `meteor` via terminal: `npm install -g meteor` ([see official docs]([https://www.meteor.com/install](https://v2-docs.meteor.com/install.html#installation)))\n3. `npm install`\n4. `meteor run` \u0026 open `http://localhost:3000/` in your browser\n\n### Adding Data to your local environment\n\nTo play around with data:\n\n1. in a new (simultaneous) terminal tab: `meteor mongo`\n2. verify that the `show collections` command produces the `Attorneys` collection\n3. insert a new document using the `api` folder .js files as a base. Make sure it contains the `name`, `state`, \u0026 `role`--otherwise it won't work. Example: `db.Attorneys.insertOne({\"id\": \"ag-01\",\"state\": \"Alabama\",\"name\": \"Steve Marshall\",\"role\": \"Attorney General\"})`\n4. check on the app in your browser; it should automatically refresh\n\n### JSON Schema\nI've asked ChatGPT to enhance our old JSON schema:\n\n```\n{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"title\": \"US Prosecutor Database Schema\",\n  \"description\": \"Enhanced schema for storing prosecutor profiles, policies, metrics, campaign statements, provenance, and privacy info for the US Prosecutor Database.\",\n  \"type\": \"object\",\n  \"properties\": {\n    \"id\": {\n      \"type\": \"string\",\n      \"pattern\": \"^[a-z]{2}-[a-z0-9\\\\-]+-[0-9]{4}$\",\n      \"description\": \"Unique ID: state (2-letter), jurisdiction slug, year (e.g., ca-los-angeles-2025)\"\n    },\n    \"prosecutor\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"name\": { \"type\": \"string\" },\n        \"role\": { \"type\": \"string\", \"enum\": [\"District Attorney\", \"Assistant District Attorney\", \"State Attorney General\", \"Deputy AG\", \"US Attorney\"] },\n        \"jurisdiction\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"state\": { \"type\": \"string\", \"minLength\": 2, \"maxLength\": 2 },\n            \"county\": { \"type\": \"string\" },\n            \"city\": { \"type\": \"string\" }\n          },\n          \"required\": [\"state\"]\n        },\n        \"party_affiliation\": { \"type\": \"string\", \"enum\": [\"Democrat\", \"Republican\", \"Independent\", \"Nonpartisan\", \"Other\", \"Unknown\"] },\n        \"demographics\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"gender\": { \"type\": \"string\", \"enum\": [\"Male\", \"Female\", \"Nonbinary\", \"Other\", \"Unknown\"] },\n            \"race_ethnicity\": { \"type\": \"string\" },\n            \"dob\": { \"type\": \"string\", \"format\": \"date\" }\n          }\n        },\n        \"contact\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"phone\": { \"type\": \"string\" },\n            \"email\": { \"type\": \"string\", \"format\": \"email\" },\n            \"website\": { \"type\": \"string\", \"format\": \"uri\" },\n            \"mailing_address\": { \"type\": \"string\" }\n          }\n        },\n        \"term_start\": { \"type\": \"string\", \"format\": \"date\" },\n        \"term_end\": { \"type\": \"string\", \"format\": \"date\" },\n        \"photo_url\": { \"type\": \"string\", \"format\": \"uri\" }\n      },\n      \"required\": [\"name\", \"role\", \"jurisdiction\"]\n    },\n    \"policies\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"topic\": { \"type\": \"string\", \"description\": \"Policy category (e.g., 'discovery', 'bail', 'diversion')\" },\n          \"description\": { \"type\": \"string\" },\n          \"url\": { \"type\": \"string\", \"format\": \"uri\" },\n          \"effective_date\": { \"type\": \"string\", \"format\": \"date\" },\n          \"last_updated\": { \"type\": \"string\", \"format\": \"date\" }\n        },\n        \"required\": [\"topic\", \"url\"]\n      }\n    },\n    \"metrics\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"id\": { \"type\": \"string\", \"description\": \"Metric identifier (e.g., 'diversion_rate', 'discovery_timeliness')\" },\n          \"name\": { \"type\": \"string\" },\n          \"value\": { \"type\": \"number\" },\n          \"unit\": { \"type\": \"string\", \"description\": \"Unit of measurement (%, days, ratio, etc.)\" },\n          \"period\": { \"type\": \"string\", \"description\": \"Reporting period (e.g., 2025Q2, 2024-01)\" },\n          \"confidence\": { \"type\": \"number\", \"minimum\": 0, \"maximum\": 1 },\n          \"evidence\": {\n            \"type\": \"array\",\n            \"items\": {\n              \"type\": \"object\",\n              \"properties\": {\n                \"url\": { \"type\": \"string\", \"format\": \"uri\" },\n                \"quote\": { \"type\": \"string\" },\n                \"quote_hash\": { \"type\": \"string\" }\n              }\n            }\n          },\n          \"caveats\": { \"type\": \"array\", \"items\": { \"type\": \"string\" } }\n        },\n        \"required\": [\"id\", \"value\", \"period\"]\n      }\n    },\n    \"campaign_statements\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"date\": { \"type\": \"string\", \"format\": \"date\" },\n          \"url\": { \"type\": \"string\", \"format\": \"uri\" },\n          \"statement\": { \"type\": \"string\" },\n          \"themes\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"description\": \"Tags for major policy stances (e.g., 'increase_incarceration', 'expand_diversion')\" }\n        },\n        \"required\": [\"date\", \"statement\"]\n      }\n    },\n    \"provenance\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"field\": { \"type\": \"string\", \"description\": \"Field path in dot notation\" },\n          \"source_url\": { \"type\": \"string\", \"format\": \"uri\" },\n          \"retrieved_at\": { \"type\": \"string\", \"format\": \"date-time\" },\n          \"text_span_hash\": { \"type\": \"string\" },\n          \"model_confidence\": { \"type\": \"number\", \"minimum\": 0, \"maximum\": 1 }\n        },\n        \"required\": [\"field\", \"source_url\", \"retrieved_at\"]\n      }\n    },\n    \"privacy\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"pii_redaction\": { \"type\": \"boolean\" },\n        \"dp_noise_epsilon\": { \"type\": \"number\", \"description\": \"Differential privacy parameter if noise is added\" }\n      }\n    },\n    \"last_updated\": { \"type\": \"string\", \"format\": \"date-time\" }\n  },\n  \"required\": [\"id\", \"prosecutor\", \"last_updated\"]\n}\n\n```\nYou'll notice the following has been added:\n\n- metrics[] for justice-forward measures with evidence and confidence levels.\n- policies[] to store topic-tagged policy statements with effective dates.\n- campaign_statements[] to track rhetoric vs. practice.\n- provenance[] to record exactly where and when each data point came from (critical for AI-assisted ingestion).\n- privacy controls to indicate whether PII was redacted or differential privacy applied.\n- Stronger validation patterns for IDs, enums, and date formats to avoid messy data.\n\n---\n\n## Production\n\nTBD\n\n---\n\n## Important Links\n- **View the live web app** (coming soon)\n- **[Read the Docs](https://github.com/billimarie/prosecutor-database/blob/master/DOCS.md)** (GitHub README.md)\n- **[View the Docs](https://billimarie.github.io/prosecutor-database/)** (website)\n- **[What do Prosecutors have to do with Police Brutality?](https://github.com/billimarie/prosecutor-database/blob/master/DOCS.md#0-history-why-prosecutors)**\n- **[Our History](https://github.com/billimarie/prosecutor-database/blob/master/DOCS.md#1-overview)**\n\n---\n\n## Community\n\n### Maintainers\n\u003e Would you like to help maintain this project? Email me (link in profile).\n\n\u003ca href=\"https://github.com/billimarie\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/6895471?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e\n\n### Contributors\n\n**Interested in contributing to the web app?** You'll find dev notes in the [**DOCS.md**](https://github.com/billimarie/prosecutor-database/blob/master/DOCS.md). Our stack is: Node.js, Meteor.js, MongoDB, Heroku.\n\n**We also need help with documentation for the GitHub page**: https://billimarie.github.io/prosecutor-database. You can use the [DOCS.md](https://github.com/billimarie/prosecutor-database/blob/master/DOCS.md) \u0026 the [Hacktoberfest Issue](https://github.com/billimarie/prosecutor-database/issues/80) as references to update our outdated GitHub page.\n\n\u003ca href=\"https://github.com/billimarie\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/6895471?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/dbhatia247\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/28025453?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/maxxgl\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/20944914?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/taylor-brudos\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/39247698?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/ryanwardle\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/37915565?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/Thai56\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/16358617?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/wnorrad\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/29986200?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/rcalimlim\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/13503461?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/jeremyfiel\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/32110157?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/davidth4ever2\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/2314743?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/baconbones\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/40526815?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/MilesHamilton\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/46730797?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/Cybeeee\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/40544593?s=60\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/aminamos\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/26092352?s=120\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/VirtualVulture\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/17329142?s=88\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/emilyedalton\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/42655908?s=88\u0026u=89b9dc741860701a302a79e1f69779caae643d0e\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/matthewgallo\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/10215203?s=88\u0026u=342de932ab4cc7469eb92562d0e191dcdb6596ed\u0026v=4\" width=\"50px\"\u003e\u003c/a\u003e \u003ca href=\"https://github.com/06b\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/1302542?s=460\u0026u=2c6fda3da88e62ea04fb5baa7d2bd88a6f1794c1\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/BlakeCampbells\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/6901655?s=460\u0026u=a0e3506221f4ab5b27ba680d0fdeeeaa795b6fd9\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/caseyryan22465\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/39289308?s=460\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/a-s-ahmed\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/59892479?s=400\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/hicks2evan\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/23247607?s=460\u0026u=f431135eea1346df4155f63e3a026b68fd3e4f4c\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/banjtheman\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/696254?s=400\u0026u=488260c17dbe0bf857caa9f642c4b6d47b664df4\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/mattkduran\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/19656092?s=460\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/xingwang\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/744584?s=460\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/baspalinckx\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/27728063?s=400\u0026u=f1fc422bee245da952d88a98fe1ac9ec3eb60afb\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/satanb4\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/26685910?s=400\u0026u=54abb55fbc9d9c7c35e219a654d23eaa3d043495\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/michaelknowles\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/738582?s=460\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/treyarte\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/21246112?s=460\u0026u=c695519d25c0c631ba1a2cac107e0a632b215c97\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/puentejose\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/17868919?s=460\u0026u=6318335f25f3da6024305a90031f8ba4fe45a262\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/zoe7\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/3652786?s=460\u0026u=97875938ea2cc0d27f32ee35760000a4d818be86\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/fedGL/\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/30448072?s=460\u0026u=30478d20849f916f8bdb3cd06d53e73be6f33cdd\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/alain-pham\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/31744581?s=460\u0026u=265c199f89be13bebfe6f9ddfbc735bf958db12a\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/shariq1989\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/2559167?s=460\u0026u=c5d43a563e79384f9715152aca7514221e9471b5\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/dmtrek14\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/3666105?s=460\u0026u=dbe14b51f09cb0c25fc92374c4c36b86ab5b4b0f\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/anjanaMA\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/47097652?s=460\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/dmtrek14\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/3666105?s=460\u0026u=dbe14b51f09cb0c25fc92374c4c36b86ab5b4b0f\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/anjanaMA\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/47097652?s=460\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/ryanmcf10\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/6777834?s=400\u0026u=efe83478f475d34d89d6c96b1dca0d746be2656c\u0026v=4\" width=\"50px\" /\u003e\u003c/a\u003e \u003ca href=\"https://github.com/ieshiawm\" target=\"_blank\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/20235726\" width=\"50px\" /\u003e\u003c/a\u003e\n\n---\n\n## Post-Carceral\n\n**Post-Carceral** is a digital community group of volunteers working on civic tech projects (like the US Prosecutor Database) in service of working toward a post-carceral (\"beyond prison\") world.\n\n### Stay Updated\n\n- [Sign up for our mailing list](http://eepurl.com/dqPQdL).\n- You can also find USPD updates on our Twitter: [@USProsecutorDB](https://twitter.com/USProsecutorDB).\n- To get involved in a remote Sunday session, follow [@postcarceral](https://twitter.com/postcarceral). This is our general prisoners' rights group responsible for housing the USPD project.\n\n### Volunteer\n\nYou don't have to be a developer or a prisoners' rights activist to join. We're looking for all types of people with all types of interests \u0026 expertise to collaborate with.\n\n**Datathons**: On Sundays, we hang out remotely and discuss recent prosecutor news, primary results, \u0026 campaigns. We also brainstorm new ways to collect data (considering the strange logic of the prosecutorial system, especially as it differs between localities \u0026 regions). If you'd like to join, send me an email.\n\n[Back to Top](#us-prosecutor-database)\n\n---\n\n## License\n\nThe USPD is an open-source community project built to house data about current and previous US Prosecutors (copyright (c) 2017 - 2020 Billimarie Lubiano Robinson). It is licensed under **GNU GPLv3**. This means you are able to use, modify, \u0026 distribute USPD as long as the following conditions are met:\n- Acknowledge the original source (this repository \u0026 its contributors)\n- Apply the same license \u0026 copyright usage\n- Make public any changes, updates, or improvements upon USPD\n\nFor more information, please view the [LICENSE.md](/.github/license.md) file.\n\n[Back to Top](#us-prosecutor-database)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbillimarie%2Fprosecutor-database","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbillimarie%2Fprosecutor-database","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbillimarie%2Fprosecutor-database/lists"}