Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

first draft civic file #64

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions civic.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove extra line of whitespace - first line should be {.

{
"id": "",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be a URL to the schema specification per the DC gov website.

We can use

"id": "https://raw.githubusercontent.com/DCgov/civic.json/master/schemas/schema-v1.json",

from https://github.com/codefordc/civic.json/blob/master/schema.json#L3

"name": "WABA Bike Infrastructure Map Project",
"status": "Beta",
"type": "Website",
"contact": {
"name": "Alex Ulsh",
"email": "[email protected]"
},
"partners": [
{
"url": "http://codefordc.org",
"name": "Code for DC"
},
{
"url": "http://www.waba.org/",
"name": "Washington Area Bicyclist Association"
}
],
"description": "Creating a bike map advocacy tool for Washington Area Bicyclist Association",
"license": "",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

License is a should be included field per the specification, let's remove from the civic.json until #52 is closed.

Once we decide on a license we should then add it to the civic.json.

"homepage": "https://dcfemtech.github.io/hackforgood-waba-map/",
"repository": "https://github.com/dcfemtech/hackforgood-waba-map",
"geography": [
"Washington, D.C.",
"Montgomery County, MD",
"Prince George’s County, MD",
"Arlington County, VA",
"Fairfax County, VA",
"Alexandria, VA"
],
"data": [
{
"name": "buffers",
"url": "https://github.com/dcfemtech/hackforgood-waba-map/tree/master/buffers"
},
{
"name": "bikelanes",
"url": "https://github.com/dcfemtech/hackforgood-waba-map/tree/master/bikelanes"
}
],
"tags": [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should add DC and WABA as tags here to make this project easier to search for.

"Data visualization",
"mapping",
"biking",
"bike lanes"
],
"links": []
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to the license property, let's remove links if blank. If we want to keep then I'd add links to the project demo and the WABA website.

}