data-cli
Version:
CLI for working with data packages
61 lines (60 loc) • 1.27 kB
JSON
{
"name": "finance-vix",
"title": "VIX - CBOE Volatility Index",
"homepage": "http://www.cboe.com/micro/VIX/",
"version": "0.1.0",
"license": "PDDL-1.0",
"sources": [{
"title": "CBOE VIX Page",
"web": "http://www.cboe.com/micro/vix/historical.aspx"
}],
"resources": [
{
"name": "vix-daily",
"path": "data/vix-daily.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Date",
"type": "date",
"description": ""
},
{
"name": "VIXOpen",
"type": "number",
"description": ""
},
{
"name": "VIXHigh",
"type": "number",
"description": ""
},
{
"name": "VIXLow",
"type": "number",
"description": ""
},
{
"name": "VIXClose",
"type": "number",
"description": ""
}
],
"primaryKey": "Date"
}
}
],
"views": [
{
"id": "Graph",
"type": "Graph",
"state": {
"graphType": "lines",
"group": "Date",
"series": [ "VIXClose" ]
}
}
]
}