list_data_sources {EDIutils} | R Documentation |
List data sources
Description
Data sources are data packages, or other online digital objects, that are known to be inputs to the specified derived data package.
Usage
list_data_sources(packageId, as = "data.frame", env = "production")
Arguments
packageId |
(character) Data package identifier |
as |
(character) Format of the returned object. Can be: "data.frame" or "xml". |
env |
(character) Repository environment. Can be: "production", "staging", or "development". |
Details
Data sources can be either internal or external to the EDI data repository. Internal data sources include a packageId value and a URL to the source metadata. For data sources external to PASTA, the packageId element will be empty and a URL value may or not be documented.
Value
(data.frame or xml_document) Data sources to packageId
See Also
Other Listing:
list_data_descendants()
,
list_data_entities()
,
list_data_package_identifiers()
,
list_data_package_revisions()
,
list_data_package_scopes()
,
list_deleted_data_packages()
,
list_recent_changes()
,
list_recent_uploads()
,
list_service_methods()
,
list_user_data_packages()
Examples
## Not run:
# List sources
dataSources <- list_data_sources("edi.275.4")
## End(Not run)