-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
44 lines (44 loc) · 1.33 KB
/
datapackage.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "phatapak.vcs.commit.types",
"title": "Types of commits to be used in commit messages",
"description": "Types of commits to be used in commit messages when using semantic commits (http://seesparkbox.com/foundry/semantic_commit_messages)",
"licenses": [
{
"id": "odc-pddl",
"path": "http://opendatacommons.org/licenses/pddl/",
"name": "public_domain_dedication_and_license",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"keywords": [ "vcs", "commit", "semantic commit", "semantic commit messages", "types"],
"version": "1.0.0",
"sources": [{
"title": "Semantic Commit Messages",
"path": "http://seesparkbox.com/foundry/semantic_commit_messages"
}],
"resources": [
{
"name": "data",
"path": "data.csv",
"schema": {
"fields": [
{
"name": "name",
"type": "string",
"description": "Name of the dataset"
},
{
"name": "title",
"type": "string",
"description": "Path to find the package in the main repository"
},
{
"name": "description",
"type": "string",
"description": "A short description of the information provided by the dataset"
}
]
}
}
]
}