Difference between revisions of "Data Structure Definition"

From Fusion Registry Wiki
Jump to navigation Jump to search
(Usage)
Line 38: Line 38:
 
<p>Each [[Dataflow|Dataflow]] references a single DSD which describes the structure of the dataset that the Dataflow represents.</p>
 
<p>Each [[Dataflow|Dataflow]] references a single DSD which describes the structure of the dataset that the Dataflow represents.</p>
  
 +
=Data Structure Components=
 
<p>
 
<p>
Each Dimension and Attribute is described by a [[Concept]]. Concepts have their own default [[Representation]] which can be overridden by defining a [[Local Representation]] for the Component in the DSD. That's particularly helpful when using some standard Concepts like the [https://registry.sdmx.org/ws/public/sdmxapi/rest/conceptscheme/SDMX/CROSS_DOMAIN_CONCEPTS/2.0 SDMX Cross Domain Concepts] where the default Representation is 'String', but the Component needs to be [[Enumerated]] or have some use case specific restriction on what values are allowable.  
+
<strong>The Role of Concepts In Defining a DSD's Components</strong><br>
 +
Every Dimension, Attribute and Measure is described by a predefined [[Concept]]. Concepts have their own default [[Representation]] which can be overridden by defining a [[Local Representation]] for the Component in the DSD. That's particularly helpful when using some standard Concepts like the [https://registry.sdmx.org/ws/public/sdmxapi/rest/conceptscheme/SDMX/CROSS_DOMAIN_CONCEPTS/2.0 SDMX Cross Domain Concepts] where the default Representation is 'String', but the Component needs to be [[Enumerated]] or have some use case specific restriction on what values are allowable.  
 
</p>
 
</p>
  
 
<p>
 
<p>
<strong>Ordering of Components in a DSD</strong><br>
+
<strong>Ordering of Dimensions in a DSD</strong><br>
 
The Dimensions in a DSD have a defined order and together form the dataset's [[Series Key]].<br>
 
The Dimensions in a DSD have a defined order and together form the dataset's [[Series Key]].<br>
To illustrate the principle, here's a simple DSD:<br>
+
To illustrate the principle, below is a simple example DSD:<br>
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 64: Line 66:
 
| n/a || Primary Measure || Observation Value || The observation value
 
| n/a || Primary Measure || Observation Value || The observation value
 
|}
 
|}
The Series Key is the concatenation of the Dimensions in the order specified in the DSD. So for this example, the Series Key is:<br><br>
+
The Series Key is the concatenation of the Dimensions in the order specified in the DSD. So for this example, the Series Key is:<br>
INDICATOR.REF_AREA.FREQUENCY
+
<code>INDICATOR.REF_AREA.FREQUENCY</code><br>
 +
Attributes do not form part of the Series Key so have no explicit or implied ordering.
 
</p>
 
</p>
  
 
<p>
 
<p>
 
+
<strong>Primary Measure</strong><br>
 +
All DSDs must have a Primary Measure Component, which is used for the observation value of the main variable being measured. Like all components, the Primary Measure must be described by a Concept. For many series, the measure is numeric, but does not need to be so. 
 
</p>
 
</p>
 
DSDs are reusable in that each can be used by multiple different [[Dataflow|Dataflows]]. It's important where a number of different datasets need to be collected or disseminated that all share the same dimensionality and coding schemes. But also allows standard DSDs to be published for use </p>
 
<p>Consider three datasets on the topics of Education, Health and Infrastructure. A simple DSD could be designed suitable for all three datasets as follows:</p>
 
 
<p>In this model, indicators would need to be chosen carefully to avoid ambiguity between datasets. Nevertheless, it avoids proliferation of data structure definitions. </p>
 

Revision as of 05:08, 20 December 2019

Overview

An SDMX Data Structure Definition (DSD) describes the structure and dimensionality of a dataset in terms of its dimensions, attributes and measures.

Structure Properties

Structure Type Standard SDMX Structural Metadata Artefact
Maintainable Yes
Identifiable Yes
Item Scheme No
SDMX Information Model Versions 1.0, 2.0, 2.1
Concept ID DSD

Context within the SDMX 2.1 Information Model

SDMX Information Model - Core Artefacts - DSD.png

The schematic illustrates the Data Structure Definition artefact within the SDMX 2.1 Information Model

Usage

Data Structure Definitions (DSDs) are used to describe the structure of datasets by specifying their constituent Components:

and optionally the Representation for each Component.

Each Dataflow references a single DSD which describes the structure of the dataset that the Dataflow represents.

Data Structure Components

The Role of Concepts In Defining a DSD's Components
Every Dimension, Attribute and Measure is described by a predefined Concept. Concepts have their own default Representation which can be overridden by defining a Local Representation for the Component in the DSD. That's particularly helpful when using some standard Concepts like the SDMX Cross Domain Concepts where the default Representation is 'String', but the Component needs to be Enumerated or have some use case specific restriction on what values are allowable.

Ordering of Dimensions in a DSD
The Dimensions in a DSD have a defined order and together form the dataset's Series Key.
To illustrate the principle, below is a simple example DSD:

Position Component Type Component ID Description
1 Dimension INDICATOR Indicator
2 Dimension REF_AREA Reference Area
3 Dimension FREQUENCY Data Frequency
n/a Time Dimension TIME_PERIOD Observation Time
n/a Attribute UNIT_MULT Unit Multiplier e.g. tens, thousands, millions
n/a Attribute Observation Status Observation Status e.g. Estimated, Final
n/a Primary Measure Observation Value The observation value

The Series Key is the concatenation of the Dimensions in the order specified in the DSD. So for this example, the Series Key is:
INDICATOR.REF_AREA.FREQUENCY
Attributes do not form part of the Series Key so have no explicit or implied ordering.

Primary Measure
All DSDs must have a Primary Measure Component, which is used for the observation value of the main variable being measured. Like all components, the Primary Measure must be described by a Concept. For many series, the measure is numeric, but does not need to be so.