API.EWS.05 SDMX example
Below is a simplified but structurally correct SDMX-JSON example for the DCI DCI_MEMBER_STATISTICS dataflow.
Scenario:
Request
GET /data/DCI_MEMBER_STATISTICS/AREA001.*.*.ALL.2026Meaning:
Area: District A
Sex: all
Disability status: all
Age group: all
Year: 2026
The expected result returns:
Sex
Disability
Count
Female
With disability
3421
Female
Without disability
60391
Male
With disability
2876
Male
Without disability
58642
{
"header": {
"id": "DCI_MEMBER_STATISTICS",
"prepared": "2026-07-31T13:00:00Z",
"sender": {
"id": "DCI_COUNTRY_SYSTEM"
}
},
"structure": {
"name": "DCI Member Statistics",
"dimensions": {
"series": [
{
"id": "REF_AREA",
"name": "Reference Area",
"keyPosition": 0,
"values": [
{
"id": "AREA001",
"name": "District A"
}
]
},
{
"id": "SEX",
"name": "Sex",
"keyPosition": 1,
"values": [
{
"id": "F",
"name": "Female"
},
{
"id": "M",
"name": "Male"
}
]
},
{
"id": "DISABILITY_STATUS",
"name": "Disability Status",
"keyPosition": 2,
"values": [
{
"id": "TRUE",
"name": "With disability"
},
{
"id": "FALSE",
"name": "Without disability"
}
]
},
{
"id": "AGE_GROUP",
"name": "Age Group",
"keyPosition": 3,
"values": [
{
"id": "ALL",
"name": "All ages"
}
]
}
]
},
"measures": {
"series": [
{
"id": "OBS_VALUE",
"name": "Number of Members",
"unit": "PERSONS"
}
]
}
},
"dataSets": [
{
"action": "Information",
"series": {
"0:0:0:0": {
"attributes": {
"OBS_STATUS": "A"
},
"observations": {
"0": [
3421
]
}
},
"0:0:1:0": {
"attributes": {
"OBS_STATUS": "A"
},
"observations": {
"0": [
60391
]
}
},
"0:1:0:0": {
"attributes": {
"OBS_STATUS": "A"
},
"observations": {
"0": [
2876
]
}
},
"0:1:1:0": {
"attributes": {
"OBS_STATUS": "A"
},
"observations": {
"0": [
58642
]
}
}
}
}
]
}How to read the series keys
The series key:
maps to the dimension indexes:
Therefore:
means:
Last updated
Was this helpful?

