From fdc529ec7ee4045783246a14f92f4cd123272bb8 Mon Sep 17 00:00:00 2001 From: Emanuel Feld Date: Sun, 31 Jan 2016 23:36:00 -0500 Subject: [PATCH] Update civic.json file to new specification Hi, there! Code for DC is moving to an updated civic.json specification. This pull request formats your existing civic.json to the new standard. Feel free to look it over and make any updates. ======================== There are a few errors remaining in the civic.json, which will need a correction: Error in contact: '' is too short ======================== ======================== I also see that your repository has no license. Without a license, others have no permission to use, modify, or share your code. This site makes it easy to add an open source license: http://choosealicense.com/ ======================== The new civic.json spec keeps the required fields from the older one, but has a number of benefits. It: * removes fields that are hard to maintain and get out of date quickly * combines partner fields to be more broadly applicable * is usable by civic tech projects outside of government, as well as inside You'll see that DC Government is using this standard in its own repos: https://github.com/dcgov You can learn more about the specification requirements here: http://open.dc.gov/civic.json --- civic.json | 54 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 22 deletions(-) diff --git a/civic.json b/civic.json index f0bf42a..bf5b725 100644 --- a/civic.json +++ b/civic.json @@ -1,24 +1,34 @@ { - "conformsTo": "http://codefordc.org/resources/specification.html", - "status": "Alpha", - "contact": - { - "twitter": "@codefordc" - }, - "bornAt": "Open Data Day 2015, Code for DC", - "geography": "DC", - "politicalEntity": {"DCPS":"http://dcps.dc.gov/"}, - "type": "Web App", - "needs": [ - {"need":"Javascript"}, - {"need":"Leaflet"}, - {"need":"Mapbox"}, - {"need":"JQuery"}, - {"need":"Spreadsheet Experts"} - ], - "categories": [ - {"category":"Education"}, - {"category":"Government"} - ], - "moreInfo": "https://opendatadaydc.hackpad.com/l1eM7PP4lzb?eid=Fyye5349OBg" + "name": "DCPS Facility Conditions", + "description": "Mapping the condition of DC Public Schools facilities", + "license": "GPL-2.0", + "status": "Alpha", + "type": "Web App", + "homepage": "", + "repository": "https://github.com/cmgiven/dcps-facilities", + "thumbnail": "", + "geography": [ + "DC" + ], + "contact": { + "name": "", + "email": "", + "url": "https://twitter.com/@codefordc" + }, + "partners": [ + { + "url": "http://codefordc.org", + "name": "Code for DC", + "email": "" + } + ], + "data": [], + "tags": [ + "Education", + "Government" + ], + "links": [ + "https://opendatadaydc.hackpad.com/l1eM7PP4lzb?eid=Fyye5349OBg" + ], + "id": "https://raw.githubusercontent.com/DCgov/civic.json/master/schemas/schema-v1.json" } \ No newline at end of file