-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhpi_template.ttl
38 lines (31 loc) · 1.27 KB
/
hpi_template.ttl
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
@base <http://example.cubeviz.org/datacube/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#> .
@prefix qb: <http://purl.org/linked-data/cube#> .
#---Dataset Prefix
@prefix statbel: <http://www.freme-project.eu/datasets/statbel/house-price-index/> .
#--Data Set
statbel:dataset-hpi a qb:DataSet;
dc:title "House price index"@en;
rdfs:comment "The statbel dataset presenting the inflation of the house price index per quartal"@en;
dc:publisher <http://statbel.fgov.be>;
dc:issued "2015-03-25"^^xsd:date;
qb:structure statbel:dsd-hpi;
.
#-- Data structure definition
statbel:dsd-hpi a qb:DataStructureDefinition;
rdfs:comment "Rate of inflation of the house price index per quartal"@en;
qb:component
[ qb:dimension sdmx-dimension:refPeriod; ],
[ qb:measure statbel:inflation; ] .
#--Measures
statbel:inflation a rdf:Property, qb:MeasureProperty;
rdfs:label "House price index inflation"@en;
rdfs:range xsd:decimal;
rdfs:subPropertyOf sdmx-measure:obsValue;
.
#--Observations