Skip to content

Commit

Permalink
Merge pull request #61 from OpenEnergyPlatform/feature/json-ld
Browse files Browse the repository at this point in the history
Feature/json ld
  • Loading branch information
chrwm authored Nov 4, 2021
2 parents 6c53477 + c06e9f7 commit d3ace8e
Show file tree
Hide file tree
Showing 3 changed files with 562 additions and 0 deletions.
55 changes: 55 additions & 0 deletions metadata/future/json-ld/context.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"@context": {
"path": "@id",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"dct": "http://purl.org/dc/terms/",
"dc": "http://purl.org/dc/elements/1.1/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"oeo": "http://openenergy-platform.org/ontology/oeo/",
"csvw": "http://www.w3.org/ns/csvw#",
"title": {
"@id": "dct:title",
"@type": "xsd:string"
},
"description": {
"@id": "dct:description",
"@type": "xsd:string"
},
"comment": {
"@id": "rdfs:comment",
"@type": "xsd:string"
},
"fields": {
"@id": "csvw:column",
"@type": "@id"
},
"resources": {
"@id": "csvw:table",
"@type": "@id"
},
"schema": {
"@id": "csvw:tableSchema",
"@type": "@id"
},
"subject": {
"@id": "dc:subject",
"@type": "@id"
},
"name": {
"@id": "rdfs:label",
"@type": "xsd:string"
},
"type": {
"@id": "csvw:datatype",
"@type": "xsd:string"
},
"unit": {
"@id": "oeo:OEO_00040010",
"@type": "xsd:string"
},
"about": {
"@id": "http://purl.obolibrary.org/obo/IAO_0000136",
"@type": "@id"
}
}
}
Loading

0 comments on commit d3ace8e

Please sign in to comment.