AI-generated Key Takeaways
-
FeedDeliveryReport
is the root element of a metadata feed, providing information about active or upcoming CDF data feeds, excluding the metadata feed itself. -
It includes a list of feeds (
FeedCollection
), partner identification (PartnerTag
), and the generation timestamp (GeneratedDate
). -
This entity is exclusively used for metadata feeds and not applicable to pre-election, election, or officeholder feeds.
-
The structure is represented in both XML and JSON formats, outlining the hierarchical relationship of elements within the
FeedDeliveryReport
.
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"} } }