AI-generated Key Takeaways
-
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.
| Name | Tag | Type | Notes | Multiplicity |
|---|---|---|---|---|
| Feed collection | <FeedCollection> |
Feed |
A list of the active or upcoming CDF data feeds, not including the metadata feed itself. |
1 or more |
| Partner tag | <PartnerTag> |
String |
Identification of the report issuer. |
1 |
| Generation datetime | <GeneratedDate> |
xs:dateTime |
A datetime in ISO-8601 format that indicates when the
|
1 |
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"} } }