bbk_metadata {bbk}R Documentation

Returns the available Bundesbank metadata

Description

Retrieval of the metadata stored in the Bundesbank's time series database. Access via the SDMX Web Service API of the Bundesbank.

Usage

bbk_metadata(type, id = NULL, lang = c("en", "de"))

Arguments

type

(character(1)) the type of metadata to query. One of: "datastructure", "dataflow", "codelist", or "concept".

id

(character(1)) id to query. Default NULL.

lang

(character(1)) language to query, either "en" or "de". Default "en".

Value

A data.table::data.table() with the queried metadata. The columns are:

id

The id of the metadata

name

The name of the metadata

Source

https://www.bundesbank.de/en/statistics/time-series-databases/help-for-sdmx-web-service/web-service-interface-metadata

See Also

Other metadata: ecb_metadata()

Examples



bbk_metadata("datastructure")
bbk_metadata("dataflow", "BBSIS")
bbk_metadata("codelist", "CL_BBK_ACIP_ASSET_LIABILITY")
bbk_metadata("concept", "CS_BBK_BSPL")



[Package bbk version 0.6.0 Index]