Page Summary
-
FeedDeliveryReport is the top-level element for an instance of the metadata feed and is only used in metadata feeds.
-
FeedCollection is a wrapper element within FeedDeliveryReport that contains one or more Feed entities.
-
Key elements within FeedDeliveryReport include FeedCollection, PartnerTag, and GeneratedDate.
-
FeedCollection is a list of active or upcoming CDF data feeds and must have one or more entries.
-
PartnerTag identifies the report issuer and GeneratedDate indicates when the report was generated in ISO-8601 format.
FeedDeliveryReport is the top-level element for an instance of the metadata
feed. FeedCollection is a wrapper element within FeedDeliveryReport that
contains one or more Feed entities.
Elements
| Element | Multiplicity | Type | Description |
|---|---|---|---|
FeedCollection |
1 or more | N/A | Wrapper for Feed
definitions that specify the active or upcoming CDF data feeds, not
including the metadata feed itself.
|
PartnerTag |
1 | string |
Identification of the report issuer. |
GeneratedDate |
1 | dateTime |
A datetime in ISO-8601 format that indicates when the
|
Examples
XML
<?xml version="1.0"?> <FeedDeliveryReport xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <FeedCollection> <Feed> ... </Feed> <Feed> ... </Feed> </FeedCollection> <PartnerTag>Partner test</PartnerTag> <GeneratedDate>2023-02-01T00:00:00Z</GeneratedDate> </FeedDeliveryReport>
JSON
{ "FeedDeliveryReport": { "FeedCollection": { "Feed": { ... }, "Feed": { ... } }, "PartnerTag": {"Partner test"}, "GeneratedDate": {"2023-02-01T00:00:00Z"} } }