Skip to content

Instantly share code, notes, and snippets.

@danbri
Created July 18, 2017 08:28
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 danbri/154e1b98240fe7fe60c26bd5c04d1325 to your computer and use it in GitHub Desktop.
Save danbri/154e1b98240fe7fe60c26bd5c04d1325 to your computer and use it in GitHub Desktop.
{
"@context": ["http://schema.org",
{"csvw": "http://www.w3.org/ns/csvw#"}],
"@type": "Dataset",
"name":"Change in Yearly Tuition at Public Colleges Since 2000",
"publisher": {
"@type": "Organization",
"name": "ProPublica"
},
"temporalCoverage" : "2000/2015",
"spatialCoverage" : "United States",
"about" : "college tuition",
"mainEntity" : {
"@type" : "csvw:Table",
"csvw:tableSchema": {
"csvw:columns": [{
"csvw:name": "School",
"csvw:datatype": "string"
}, {
"csvw:name": "State",
"csvw:datatype": "string"
}, {
"csvw:name": "Tuition and Fees 2000-01",
"csvw:datatype": "integer"
}, {
"csvw:name": "Tuition and Fees 2014-15",
"csvw:datatype": "integer"
}, {
"csvw:name": "Change since 2000 (%)",
"csvw:datatype": "integer"
}]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment