sdmx-rest
Version:
SDMX REST API client for JavaScript
21 lines (17 loc) • 595 B
JavaScript
// Generated by CoffeeScript 2.7.0
(function() {
// Specifies the amount of information to be returned for data queries.
var details;
details = {
// All data and documentation, including annotations.
FULL: 'full',
// Attributes and groups (if any) will be excluded from the message.
DATA_ONLY: 'dataonly',
// The series and their dimensions.
SERIES_KEYS_ONLY: 'serieskeysonly',
// The series and groups, including attributes and annotations, but no
// observations
NO_DATA: 'nodata'
};
exports.DataDetail = Object.freeze(details);
}).call(this);