A class to handle a SDMX service request params
SDMXRequestParams(regUrl, repoUrl, accessKey,
providerId, agencyId, resource, resourceId, version,
flowRef, key, start, end, compliant)
an object of class "character" giving the base Url of the SDMX service registry
an object of class "character" giving the base Url of the SDMX service repository
an oject of class "character" giving the eventual authentication or subscription user key (or token) to provide in order to perform the SDMX request. This key may be mandatory for some service providers.
an object of class "character" giving the provider agency id
an object of class "character" giving an agency id
an object of class "character" giving the type of resource to be queried
an object of class "character" giving the resource to be queried
an object of class "character" giving the resource version
an object of class "character" giving the flowRef to be queried
an object of class "character" giving the key (SDMX url formatted) to be used for the query
an object of class "character" giving the start time
an object of class "character" giving the end time
an object of class "logical" indicating if the web-service is compliant with the SDMX REST web-service specifications
regUrl
an object of class "character" giving the base Url of the SDMX service registry
repoUrl
an object of class "character" giving the base Url of the SDMX service repository
accessKey
an object of class "character" indicating the name of request parameter for which an authentication or subscription user key/token has to be provided to perform requests
providerId
an object of class "character" giving the provider agency Id
agencyId
an object of class "character" giving an agency Id
resource
an object of class "character" giving the type of resource to be queried
resourceId
an object of class "character" giving the resource to be queried
version
an object of class "character" giving the resource version
flowRef
an object of class "character" giving the flowRef to be queried
key
an object of class "character" giving the key (SDMX url formatted) to be used for the query
start
an object of class "character" giving the start time
end
an object of class "character" giving the end time
compliant
an object of class "logical" indicating if the web-service is compliant with the SDMX REST web-service specifications
This class is not useful in itself, but all SDMX non-abstract classes will encapsulate it as slot, when parsing an SDMX-ML document.
Emmanuel Blondel, emmanuel.blondel1@gmail.com
#how to create a SDMXRequestParams object
params <- SDMXRequestParams(
regUrl = "", repoUrl ="", accessKey = NULL,
providerId = "", agencyId ="", resource = "data", resourceId = "",
version = "", flowRef = "", key = NULL, start = NULL, end = NULL, compliant = FALSE
)
Run the code above in your browser using DataLab