Expand description
SDMX-JSON Data Message format, 2.0.0 (aligned with SDMX 3.0.0)
This module implements SDMX-JSON Data Message 2.0.0. The Data Message format allows for exchanging contextual statistics data via the JSON file format.
JSON files in this format are implemented in the top-level root type,
DataMessage
.
They can be deserialized from a &str
, a &[u8]
,
and a Value
.
Structs§
- Attribute
Relationship - The relationship between an attribute and other data structure definition components as defined in the data structure definition.
- Component
- A dimension, measure, or attribute used in the message.
- Component
Value - A particular value for a component in a message.
- Data
- The associated data with a data message.
- Data
Message - The top-level type of a JSON file that conforms to the SDMX-JSON Data Message format.
- DataSet
- A collection of observations with meta-information about the dataset (when it was published, reported, how long the dataset is valid, etc).
- Dims
Measures Attributes - An object which either represents multiple dimensions, multiple measures, or multiple attributes.
- Format
- The representation for a component.
- Series
- A set of data points.
- Structure
- The structural metadata for interpreting the data contained in the message.
Type Aliases§
- Attributes
- A short, convenient type alias to
DimsMeasuresAttributes
. - Dimensions
- A short, convenient type alias to
DimsMeasuresAttributes
. - Measures
- A short, convenient type alias to
DimsMeasuresAttributes
.