Skip to content

Instantly share code, notes, and snippets.

@hubgit
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hubgit/8852687 to your computer and use it in GitHub Desktop.
Save hubgit/8852687 to your computer and use it in GitHub Desktop.
Data Package JSON experiments
{
"name": "a-unique-human-readable-and-url-usable-identifier",
"title": "A nice title",
"resources": [
{
"path": "file-one.csv",
"format": "csv",
"hash": "md5hash",
"modified": "2014-02-01",
}
]
}
{
"name": "a-unique-human-readable-and-url-usable-identifier",
"title": "A nice title",
"resources": [
{
"path": "file-one.csv",
"schema": {
"fields": [
{
"name": "id",
"type": "string"
}
{
"name": "title",
"type": "string"
},
{
"name": "volume",
"type": "integer"
},
{
"name": "datePublished",
"type": "date",
"title": "publication date",
"description": "the date the item was published"
}
],
"primaryKey": "id"
},
"dialect": {
"delimiter": ",",
"doubleQuote": false,
"lineTerminator": "\n",
"quoteChar": "\"",
"skipInitialSpace": false
}
}
]
}
{
"name": "a-unique-human-readable-and-url-usable-identifier",
"title": "A nice title",
"resources": [
{
"path": "file-one.csv",
"schema": {
"fields": [
{
"name": "id",
"type": "string"
}
{
"name": "title",
"type": "string"
},
{
"name": "volume",
"type": "integer"
},
{
"name": "datePublished",
"type": "date",
"title": "publication date",
"description": "the date the item was published"
}
],
"primaryKey": "id"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment