<?xml version="1.0" encoding="ISO-8859-1"?>
<!--metrics syndication standard -->
<mss version="0.1">
	<lastBuildDate>{feed publication date}</lastBuildDate>
	<updateFrequency>{number of minutes between data update}</updateFrequency>
	<channel>
		<title>{site title}</title>
		<link>{root url of publishing domain}</link>
		<metricSets>
			<site id="{unique section identifier}">
				<postCount>{number of posts site wide}</postCount>
				<viewCount>{number of views site wide}</viewCount>
				<imageCount>{image count site wide}</imageCount>
				<videoCount>{video count site wide}</videoCount>
				<audioCount>{audio count site wide}</audioCount>
				<commentCount>{number of comments site wide}</commentCount>
				<memberCount>{number of members site wide}</memberCount>
			</site>
			<section id="{unique section identifier}">
				<title>{section title}</title>
				<link>{section url}</link>
				<!-- date is an option attribute of any metric.  
					Can be used when metric is generated only periodically, or for showing historical data
					if left out is assumed to be date=now. 
					 -->
				<postCount date="2008-05-24T07:39:21">{number of posts in site section}</postCount>
				<commentCount>{number of comments in site section}</commentCount>
				<viewCount>{number of views in site section}</viewCount>
				<memberCount>{number of members for site section}</memberCount>
			</section>
			<member id="{unique member identifier}">
				<commentCount>{number of comments by a member}</commentCount>
				<postCount>{number of posts by a member}</postCount>
				<viewCount>{number of views in member section}</viewCount>
				<!--
				media type (images,video, autio etc) counts...
				-->
				<imageCount>{member image count}</imageCount>
				<videoCount>{member video count}</videoCount>
				<audioCount>{member audio count}</audioCount>
				<!--
				any metricSet block can have a customMetrics block 
				-->
				<customMetrics>
					<customMetric date="{optional xml encoded date}">
						<key>{key}</key>
						<value>{value}</value>
						<title>{optional title}</title>
					</customMetric>
					<customMetric>
						<key>totalClicks</key>
						<value>56</value>
						<!-- use title for human readable title (hint: use CDATA for html fragments) -->
						<title>Total Clicks</title>
					</customMetric>
					...
				</customMetrics>
			</member>
			<content id="{unique content identifier}">
				<title>{content item title}</title>
				<link>{link to content item}</link>
				<type>{what type of content this is}</type>
				<commentCount>{number of comments site wide}</commentCount>
				<viewCount>{number of members site wide}</viewCount>
				<rating floor="0" ceiling="5">{numaric rating for content item}</rating>
				<voteCount>{number of votes for this content item}</voteCount>
				<favoritedCount>{number of times this content item was favorited}</favoritedCount>
				<linkCount>{number of external links to this content item}</linkCount>
			</content>
			
			<!-- Need metrics for a search results page / or tag page. -->
			<resultList id="{unique result identifier}">
				<link>{link to results page}</link>
				<resultsCount>{total number of results}</resultsCount>
				<postCount>{number of posts}</postCount>
				<imageCount>{image count}</imageCount>
				<videoCount>{video count}</videoCount>
				<audioCount>{audio count}</audioCount>
			</resultList>
			
		</metricSets>
	</channel>
</mss>
