Skip to content

Fusion-JSON

Overview

Fusion-JSON is a format used for Structural Metadata, Data, and Reference Metadata. The Fusion-JSON format was created before the SDMX-JSON format became a standard as so has a slightly different syntax. In addition the Fusion-JSON format is used for Structural Metadata that is supported by the Fusion Metadata Registry which is not a part of the official SDMX Specification. This includes:

It is the only format that supports all of the structures used in Fusion Metadata Registry.

Example - serialising a Value List

{
    "ValueList": [
    {
        "id": "VL_SYMBOLS",
        "urn": "urn:sdmx:org.sdmx.infomodel.valuelist.ValueList=SDMX:VL_SYMBOLS(1.0)",
        "names": [
        {
            "locale": "en",
            "value": "List of Symbols"
        }
        ],
        "agencyId": "SDMX",
        "version": "1.0",
        "isFinal": false,
        "isPartial": false,
        "items": [
        {
            "id": "$",
            "names": [
            {
                "locale": "en",
                "value": "Dollar"
            }
            ]
        },
        {
            "id": "£",
            "names": [
            {
                "locale": "en",
                "value": "Pound"
            }
            ]
        },
        {
            "id": "%",
            "names": [
            {
                "locale": "en",
                "value": "Percent"
            }
            ]
        }
        ]
    }
    ]
}