<?xml version="1.0" encoding="UTF-8"?>
<!--
  Magic Pulse partner release feed template

  Send this file to your technical/web team and publish a live version of it
  on your website. When it is live, send Magic Pulse the public feed URL, for
  example:

  https://partner.example/feeds/magic-pulse-releases.xml

  The feed should contain many <item> entries, one per product/release. Put the
  newest releases first. Keep old releases in the feed when possible, because it
  helps Magic Pulse avoid duplicates and rebuild history if needed.

  Format:
  - RSS 2.0
  - Media RSS for product images
  - Atom self-link for feed discovery
  - magicpulse namespace for release/product fields that RSS does not define

  Why standard RSS fields are used:
  - <title> is the normal human-readable product title.
  - <link> is the public product page URL.
  - <description> is the normal RSS product summary.
  - <pubDate> is the release/publish date.
  - <category> can be repeated for product categories.

  Why magicpulse fields are used:
  RSS does not have clean standard fields for product-specific data such as
  product name, creator, brand, price, currency, preorder status, or stock
  status. Those fields are therefore placed in the magicpulse namespace.

  Important title rule:
  If the display title is "Gift Game by Astor", keep that in <title>, but also
  split the structured data like this:

  <magicpulse:productName>Gift Game</magicpulse:productName>
  <magicpulse:creator>Astor</magicpulse:creator>

  This lets Magic Pulse avoid guessing where the product name ends and the
  creator name begins.

  Required per item:
  - guid
  - title
  - link
  - pubDate
  - media:thumbnail url

  Recommended per item:
  - description
  - magicpulse:price
  - magicpulse:currency
  - magicpulse:productName
  - magicpulse:brand
  - magicpulse:creator
  - magicpulse:category
  - magicpulse:availability

  Date format:
  - Use RFC 822 / RFC 1123 dates for pubDate, for example:
    Tue, 12 May 2026 10:00:00 GMT

  Image rule:
  - Use an absolute HTTPS URL for media:thumbnail.
  - Square product images are preferred, but any clear product image is usable.

  Price rule:
  - magicpulse:price should contain only the numeric amount, for example 39.95.
  - magicpulse:currency should contain ISO currency code, for example USD, EUR,
    GBP, or DKK.
  - magicpulse:priceLabel can contain the formatted display price, for example
    $39.95 or DKK 299.00.

  Availability values:
  - in_stock
  - preorder
  - out_of_stock
  - discontinued
  - unknown
-->
<rss
  version="2.0"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:media="http://search.yahoo.com/mrss/"
  xmlns:magicpulse="https://magicpulse.net/rss/release/1.0"
>
  <channel>
    <title>Partner Name - New Magic Releases</title>
    <link>https://partner.example/new-magic</link>
    <description>Latest magic products and releases from Partner Name.</description>
    <language>en</language>
    <lastBuildDate>Tue, 12 May 2026 10:30:00 GMT</lastBuildDate>
    <ttl>60</ttl>
    <atom:link
      href="https://partner.example/feeds/magic-pulse-releases.xml"
      rel="self"
      type="application/rss+xml"
    />

    <magicpulse:partner>
      <magicpulse:name>Partner Name</magicpulse:name>
      <magicpulse:id>partner-name</magicpulse:id>
      <magicpulse:website>https://partner.example</magicpulse:website>
      <magicpulse:country>US</magicpulse:country>
    </magicpulse:partner>

    <item>
      <guid isPermaLink="false">partner-name-release-2026-05-12-card-magic-example</guid>
      <title>Card Magic Example by Creator Name</title>
      <link>https://partner.example/products/card-magic-example</link>
      <description>
        Short plain-text product summary. Keep this under 300 characters when possible.
      </description>
      <pubDate>Tue, 12 May 2026 10:00:00 GMT</pubDate>
      <category>Card Magic</category>
      <category>New Release</category>

      <media:thumbnail
        url="https://partner.example/images/products/card-magic-example-720x720.jpg"
        width="720"
        height="720"
      />
      <media:content
        url="https://partner.example/images/products/card-magic-example-1200x1200.jpg"
        medium="image"
        type="image/jpeg"
      />
      <media:title>Card Magic Example by Creator Name</media:title>
      <media:description>
        Short plain-text product summary. Keep this under 300 characters when possible.
      </media:description>

      <magicpulse:productName>Card Magic Example</magicpulse:productName>
      <magicpulse:brand>Example Magic Co.</magicpulse:brand>
      <magicpulse:creator>Creator Name</magicpulse:creator>
      <magicpulse:price>39.95</magicpulse:price>
      <magicpulse:currency>USD</magicpulse:currency>
      <magicpulse:priceLabel>$39.95</magicpulse:priceLabel>
      <magicpulse:category>Card Magic</magicpulse:category>
      <magicpulse:format>physical</magicpulse:format>
      <magicpulse:availability>in_stock</magicpulse:availability>
      <magicpulse:preorder>false</magicpulse:preorder>
      <magicpulse:language>en</magicpulse:language>
    </item>
  </channel>
</rss>
