RSS Feed

From FMR Knowledge Base
Revision as of 09:13, 5 September 2022 by Vmurrell (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

The Fusion Metadata Registry maintains an RSS feed of any structural activity. Each RSS entry represents a transaction in the Fusion Registry and following the link will open a SDMX version 2.1 Registry Interface Document containing the contents of the information submitted in the transaction.

To view the RSS feed, navigate to the URL:

http://[server]:[port]/FusionRegistry/rss.xml

or alternatively, click on the orange RSS icon that can be found at the bottom right of most pages.

The RSS feed shows all events that have occurred in the past 24 hours. If there are no events in that time period, then the last 5 events are listed.

RSS Item

For each RSS Item the following information is supplied

title The title of the item which includes the Transaction Item
link A direct link to the Transaction.
guid A direct link to the Transaction.
description The SDMX action that was performed in this Transaction.
encoded A repeat of the description in mixed case.
pubDate The date and time in GMT that the Transaction was performed by the Registry. This is in human readable form.
date The date and time in GMT that the Transaction was performed by the Registry. This is in 1SO-8601.
transactionsAdded A list of the URNs of the structural metadata that was added in the Transaction. This is semi-colon delimited.
transactionsModified A list of the URNs of the structural metadata that was modified in the Transaction. This is semi-colon delimited.
transactionsDeleted A list of the URNs of the structural metadata that was deleted in the Transaction. This is semi-colon delimited.

An example is shown below, which depicts a Replace action in which one codelist was added (CL_DECIMALS) and two codelists were modified (CL_FREQ and CL_TIME_FORMAT)

<item>
  <title>Transaction #959 Structure Submission</title>
  <link>http://localhost:8080/FusionRegistry/ws/registry/tx/transactions?txId=959</link>
  <transactions:added>urn:sdmx:org.sdmx.infomodel.codelist.Codelist=SDMX:CL_DECIMALS(1.0);</transactions:added>
  <transactions:modified>urn:sdmx:org.sdmx.infomodel.codelist.Codelist=SDMX:CL_FREQ(1.0);urn:sdmx:org.sdmx.infomodel.codelist.Codelist=SDMX:CL_TIME_FORMAT(1.0);</transactions:modified>
  <transactions:deleted/>
  <description>REPLACE</description>
  <content:encoded>Replace</content:encoded>
  <pubDate>Tue, 31 Mar 2020 23:59:59 GMT</pubDate>
  <guid>http://localhost:8080/FusionRegistry/ws/registry/tx/transactions?txId=959</guid>
  <dc:date>2020-03-31T23:59:59Z</dc:date>
</item>