<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <author>
    <name>User Administrator</name>
    <uri>http://www.freebase.com:80/view/user/user_administrator</uri>
  </author>
    <generator uri="http://www.freebase.com/">Freebase Atom Feed Generator</generator>
    <id>http://www.freebase.com:80/view/user/spatialed</id>
    <link rel="self" href="http://www.freebase.com:80/feed/discuss/watched/user/spatialed"/>
    <title>spatialed</title>
    <updated>2008-08-29T00:40:07Z</updated>
  <entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">&lt;p&gt;The following is the code I used. Have a look only if you're free. I print out $count to see number of topics with images and $count~438 &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Afterwards I grep entire query result and got numbers close to you:&amp;nbsp;&lt;/p&gt;&lt;p&gt;692001 topics with image&lt;/p&gt;&lt;p&gt;626805 topics with 1 image&lt;/p&gt;&lt;p&gt;62827 topics with 2 images&lt;/p&gt;&lt;p&gt;2210 topcis with 3 images&lt;/p&gt;&lt;p&gt;and so on... &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;#!/usr/bin/perl&lt;br /&gt;use URI::Escape;&amp;nbsp; &lt;br /&gt;# This module provides the uri_escape function used below&lt;br /&gt;&lt;br /&gt;# Build the Metaweb query, using string manipulation&lt;br /&gt;# CAUTION: the use of string manipulation here makes this script vulnerable&lt;br /&gt;# to MQL injection attacks when the command-line argument includes JSON.&lt;br /&gt;#$band = $ARGV[0]; # This is the band or musician whose albums are to be listed&lt;br /&gt;&lt;br /&gt;my $cursor = 'true';&lt;br /&gt;my $query;&lt;br /&gt;my $pre = &lt;br /&gt;'{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;qname&amp;quot;:{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;cursor&amp;quot;:';&lt;br /&gt;&lt;br /&gt;my $post = ',&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;query&amp;quot;:[{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot;:null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;limit&amp;quot;:1000,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot;:&amp;quot;/common/topic&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;image&amp;quot;:[{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;return&amp;quot;:&amp;quot;count&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot;:null&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}';&lt;br /&gt;&lt;br /&gt;my $allresult = '';&lt;br /&gt;my $count = 0;&lt;br /&gt;my $result = '';&lt;br /&gt;&lt;br /&gt;until($cursor =~ /error/){&lt;br /&gt;#while($cursor){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $query = $pre . $cursor . $post;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $escaped = uri_escape($query); &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $baseurl='http://www.freebase.com/api/service/mqlread'; # Base URL for queries&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $url = $baseurl . &amp;quot;?queries=&amp;quot; . $escaped;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $auth = 'metaweb-user=###Enter Your cookie data here###';&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #$result = `curl -s --cookie \'$auth\' $url`;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $result = `curl -s $url`;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $result =~ /\/api\/status\/(.*)/;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $status = $1;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $result =~ /cursor\&amp;quot;:\s*(\&amp;quot;.*\&amp;quot;)/;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $cursor = $1;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $count = $count + 1;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print $result . &amp;quot;\n&amp;quot;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;# Use regular expressions to extract the album list from the HTTP response&lt;br /&gt;#$result =~ s/^.*&amp;quot;album&amp;quot;\s*:\s*\[\s*([^\]]*)\].*$/$1/s;&lt;br /&gt;#$result =~ s/[ \t]*&amp;quot;[ \t,]*//g;&lt;br /&gt;#print $allresult .&amp;quot;\n&amp;quot;;&lt;br /&gt;&lt;br /&gt;print 'done'.&amp;quot;\n&amp;quot;;&lt;br /&gt;# Finally, display the list of albums&lt;br /&gt;#print &amp;quot;$result\n&amp;quot;;&lt;br /&gt;#&lt;br /&gt;# vim: ts=2 sw=2</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902ca93</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902ca93" title="Help Center: to get (image) statistics"/>
    <summary type="html">The following is the code I used. Have a look only if you're free. I print out $count to see number...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T22:47:07.0005Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">Well, I got essentially the same results as reported above using &lt;a href="http://sandbox.freebase.com/view/guid/9202a8c04000641f8000000005c79adb"&gt;metaweb.py&lt;/a&gt;.&amp;nbsp; Are you using your own Perl module, or one from our &lt;a href="/view/freebase/metaweb_framework"&gt;API library&lt;/a&gt;?</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902bc6f</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000902bc6f" title="Help Center: to get (image) statistics"/>
    <summary type="html">Well, I got essentially the same results as reported above using metaweb.py.&amp;nbsp; Are you using...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T20:34:47.0012Z</updated>
  </entry><entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">Thanks. I counted the number of iteration for the code above and multiply it by 1000 (since I set the limit 1000) to get approximate image count.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009029f2c</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009029f2c" title="Help Center: to get (image) statistics"/>
    <summary type="html">Thanks. I counted the number of iteration for the code above and multiply it by 1000 (since I set...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T15:19:55.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;Some MQL reference material can be found &lt;a href="/view/en/documentation"&gt;here&lt;/a&gt;.&amp;nbsp; I iterated through topics with images and then recorded the number of links there were.&amp;nbsp; Currently, you can't constrain the query to ask it to return topics with exactly &lt;em&gt;n&lt;/em&gt; amount of images.&amp;nbsp; I'm not sure why your results differ so greatly that mine - I'll try to investigate a little more. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009027d05</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009027d05" title="Help Center: to get (image) statistics"/>
    <summary type="html">Some MQL reference material can be found here.&amp;nbsp; I iterated through topics with images and then...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T05:53:50.0012Z</updated>
  </entry><entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">&lt;p&gt;Thank you. It seems I don't know enough of MQL language; let me know if there's reference other than this website for I don't want to bother you like this.&lt;/p&gt;&lt;p&gt;I use the following code embedded in a perl code to count the number of topics with at least one image, and the result is about 438K--much lower than yours. By the way how to get the number of topics with exactly 1, 2, or 3 images? Can this be requested directly in the query?&lt;/p&gt;&lt;p&gt;{&lt;br /&gt;&amp;nbsp; &amp;quot;qname&amp;quot;:{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;cursor&amp;quot;:&amp;lt;cursor value&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;query&amp;quot;:[{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot;:null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;limit&amp;quot;:1000,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot;:&amp;quot;/common/topic&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;image&amp;quot;:[{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot;:null&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;}&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009027b0d</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009027b0d" title="Help Center: to get (image) statistics"/>
    <summary type="html">Thank you. It seems I don't know enough of MQL language; let me know if there's reference other...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-28T05:04:39.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;You can just break the link between an image and a topic and not have the image deleted.&amp;nbsp; Just for fun, I ran a quick analysis:&lt;/p&gt;&lt;p&gt;Found 716008 /common/topic topics with image links (out of ~4 million topics)&lt;br /&gt;650326 have one img&lt;br /&gt;63058 have two imgs&lt;br /&gt;2296 have three imgs&lt;br /&gt;328 have four or more imgs &lt;/p&gt;Note that more than one topic can be linked to the same image.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009025ac9</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009025ac9" title="Help Center: to get (image) statistics"/>
    <summary type="html">You can just break the link between an image and a topic and not have the image deleted.&amp;nbsp; Just...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-27T22:31:31.0012Z</updated>
  </entry><entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">Thank you. Then if a /common/image object is not linked to any /common/topic object, why is it there and how can it be presented to end users? Thanks.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009025392</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009025392" title="Help Center: to get (image) statistics"/>
    <summary type="html">Thank you. Then if a /common/image object is not linked to any /common/topic object, why is it...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-27T20:54:54.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">No, not necessarily - a /common/image topic may not be linked to a /common/topic topic (for whatever reason).&amp;nbsp; You could use the last query to find out how many images each /common/topic topic has by counting the ids in the &amp;quot;image&amp;quot; clause.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009024d95</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009024d95" title="Help Center: to get (image) statistics"/>
    <summary type="html">No, not necessarily - a /common/image topic may not be linked to a /common/topic topic (for...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-27T19:06:31.0012Z</updated>
  </entry><entry>
    <author>
    <name>parity</name>
    <uri>http://www.freebase.com:80/view/user/parity</uri>
  </author>
    <content type="html">&lt;p&gt;Thanks, that's really helpful!&lt;/p&gt;&lt;p&gt;Now if i'm not mistaken there're about 700K images and 330K topics with image. Does that imply that on average those topics with images each has 2 images? Thanks. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000090245c8</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000090245c8" title="Help Center: to get (image) statistics"/>
    <summary type="html">Thanks, that's really helpful! Now if i'm not mistaken there're about 700K images and 330K topics...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-27T17:58:20.0012Z</updated>
  </entry><entry>
    <author>
    <name>macrofight</name>
    <uri>http://www.freebase.com:80/view/user/macrofight</uri>
  </author>
    <content type="html">&lt;p&gt;IUCN Red List http://www.iucnredlist.org/search/search-basic&lt;/p&gt;&lt;p&gt;&amp;nbsp;This site has a lots of useful info.&amp;nbsp;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009020077</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009020077" title="Organism Classification: Conservation Status "/>
    <summary type="html">IUCN Red List http://www.iucnredlist.org/search/search-basic &amp;nbsp;This site has a lots of useful...</summary>
    <title>Organism Classification: Conservation Status </title>
    <updated>2008-08-26T21:57:06.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;The result times out because there is a large amount of /common/image topics.&amp;nbsp; Usually, the way to request counts is:&lt;/p&gt;&lt;p&gt;{&lt;br /&gt;&amp;nbsp; &amp;quot;id&amp;quot; : null,&lt;br /&gt;&amp;nbsp; &amp;quot;return&amp;quot; : &amp;quot;count&amp;quot;,&lt;br /&gt;&amp;nbsp; &amp;quot;type&amp;quot; : &amp;quot;/common/image&amp;quot;&lt;br /&gt;} &lt;/p&gt;&lt;p&gt;But this will still time out on requests with a large amount of topics.&amp;nbsp; You could query for the instance count which is tallied nightly:&lt;/p&gt;&lt;p&gt;{&lt;br /&gt;&amp;nbsp; &amp;quot;/freebase/type_profile/instance_count&amp;quot; : null,&lt;br /&gt;&amp;nbsp; &amp;quot;id&amp;quot; : &amp;quot;/common/image&amp;quot;&lt;br /&gt;}&lt;/p&gt;&lt;p&gt;but that isn't real-time.&lt;/p&gt;&lt;p&gt;Lastly, you could count yourself by using a cursor and counting until the end of the result set:&lt;/p&gt;&lt;p&gt;{&lt;br /&gt;&amp;nbsp;&amp;quot;cursor&amp;quot;: true,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;query&amp;quot;:&amp;nbsp; [{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot; : null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot; : &amp;quot;/common/image&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }]&lt;br /&gt;} &lt;/p&gt;&lt;p&gt;To find topics that have an image, you can query for them like so:&lt;/p&gt;&lt;p&gt;[&lt;br /&gt;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot; : null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;image&amp;quot; : [&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot; : null&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot; : &amp;quot;/common/topic&amp;quot;&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;]&lt;/p&gt;&lt;p&gt;Again, the resultset is very large and will time out, so you will need to cursor and count yourself. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000901df85</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000901df85" title="Help Center: to get (image) statistics"/>
    <summary type="html">The result times out because there is a large amount of /common/image topics.&amp;nbsp; Usually, the...</summary>
    <title>Help Center: to get (image) statistics</title>
    <updated>2008-08-26T16:34:25.0000Z</updated>
  </entry><entry>
    <author>
    <name>crism</name>
    <uri>http://www.freebase.com:80/view/user/crism</uri>
  </author>
    <content type="html">There is not, because the way you&amp;rsquo;ve structured your query, you are asking for the &amp;ldquo;acting gigs,&amp;rdquo; not the actors. It appears that Tambor did play two different roles on &lt;em&gt;Arrested Development&lt;/em&gt;, and so two gigs are appropriate there. If you ask for the character in the cast, this will be more obvious.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000901c81b</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000901c81b" title="Data Modeling Guide: Duplicate values"/>
    <summary type="html">There is not, because the way you&amp;rsquo;ve structured your query, you are asking for the &amp;ldquo...</summary>
    <title>Data Modeling Guide: Duplicate values</title>
    <updated>2008-08-26T13:15:38.0012Z</updated>
  </entry><entry>
    <author>
    <name>reut</name>
    <uri>http://www.freebase.com:80/view/user/reut</uri>
  </author>
    <content type="html">&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I send this query:&lt;/p&gt;&lt;p&gt;[&lt;br /&gt;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;name&amp;quot; : null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;original_network&amp;quot; : [&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;network&amp;quot; : null&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;regular_cast&amp;quot; : [&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;actor&amp;quot; : null&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot; : &amp;quot;/tv/tv_program&amp;quot;&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;]&lt;/p&gt;&lt;p&gt;and i get an actor &amp;quot;Jefferey Tambor&amp;quot; that appear twice in &amp;quot;Arrested Development&amp;quot;.&lt;/p&gt;&lt;p&gt;Is there anyway to ignore from duplicate values?&lt;/p&gt;&lt;p&gt;&amp;nbsp;Tx All.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; </content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000901b86e</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000901b86e" title="Data Modeling Guide: Duplicate values"/>
    <summary type="html">Hi, I send this query: [&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;name&amp;quot; : null,&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot...</summary>
    <title>Data Modeling Guide: Duplicate values</title>
    <updated>2008-08-26T07:51:14.0005Z</updated>
  </entry><entry>
    <author>
    <name>mmcm</name>
    <uri>http://www.freebase.com:80/view/user/mmcm</uri>
  </author>
    <content type="html">&lt;p&gt;mechanism of action&lt;/p&gt;&lt;p&gt;adult dosing&lt;/p&gt;&lt;p&gt;child dosing&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009005c70</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000009005c70" title="Medicine: suggested properties"/>
    <summary type="html">mechanism of action adult dosing child dosing </summary>
    <title>Medicine: suggested properties</title>
    <updated>2008-08-26T00:10:44.0028Z</updated>
  </entry><entry>
    <author>
    <name>gogrimm</name>
    <uri>http://www.freebase.com:80/view/user/gogrimm</uri>
  </author>
    <content type="html">&lt;p&gt;The Jamaica Protected Areas Trust is creating a&lt;a href="http://www.jpat-jm.com/"&gt;&amp;nbsp;web site&lt;/a&gt;&amp;nbsp;with&amp;nbsp;&lt;a href="http://www.jpat-jm.com/virtour/virtour.html"&gt;interactive virtual tour maps&lt;/a&gt;&amp;nbsp;linking to protected area location 360 degree panorama views with audio, detailed information, and a&amp;nbsp;&lt;a href="http://www.jpat-jm.com/netcentr/netcentr.html"&gt;Conservation Network Center&lt;/a&gt;&amp;nbsp;for public involvement. &lt;/p&gt;&lt;p&gt;The web site also contains a link to&amp;nbsp;comprehensive GIS datasets on Jamaica. See&amp;nbsp;&lt;a href="http://www.jpat-jm.com/netcentr/reflibrary/gis.html#Anchor-The-49575"&gt;The Nature Conservancy Internet Map Services.&lt;/a&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff98f1</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff98f1" title="Protected Places: Some protected area databases"/>
    <summary type="html">The Jamaica Protected Areas Trust is creating a &amp;nbsp;web site&amp;nbsp;with&amp;nbsp;interactive virtual...</summary>
    <title>Protected Places: Some protected area databases</title>
    <updated>2008-08-24T16:52:43.0012Z</updated>
  </entry><entry>
    <author>
    <name>jeff</name>
    <uri>http://www.freebase.com:80/view/user/jeff</uri>
  </author>
    <content type="html">&lt;p&gt;Bear in mind also that ids must be unique within a namespace. If catalog numbers are all unique, this isn't a problem. But if they're only unique per label, this might be enormously cumbersome. If I'm reading you right, Chris, I'm seeing a one-namespace-per-label model, which, while theoretically do-able, seems like a vast undertaking.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff0d59</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff0d59" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">Bear in mind also that ids must be unique within a namespace. If catalog numbers are all unique,...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T18:09:02.0012Z</updated>
  </entry><entry>
    <author>
    <name>crism</name>
    <uri>http://www.freebase.com:80/view/user/crism</uri>
  </author>
    <content type="html">&lt;p&gt;You can make namespaces, such as /user/metaeducation/labels and /user/metaeducation/labels/capitol, with the query editor. Create an instance of /type/namespace and add a key into the parent namespace.&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;type&amp;quot;:&amp;quot;/type/namespace&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;name&amp;quot;:&amp;quot;My Namespace&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;key&amp;quot;:{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;value&amp;quot;:&amp;quot;sample&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;namespace&amp;quot;:&amp;quot;/user/metaeducation&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp; },&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;create&amp;quot;:&amp;quot;unless_exists&amp;quot;&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;will create an instance of &lt;em&gt;Namespace&lt;/em&gt; addressable as /user/metaeducation/sample. You can add things to that namespace:&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;id&amp;quot;:&amp;quot;/guid/deadbeefcafebabedeadbabecafebeef&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;quot;key&amp;quot;:{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;value&amp;quot;:&amp;quot;why_dead_beef&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;namespace&amp;quot;:&amp;quot;/user/metaeducation/sample&amp;quot;,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;connect&amp;quot;:&amp;quot;insert&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;As for uniqueness of albums: the problem is that MusicBrainz only models releases, not actual albums. We attempt to identify releases of the same albums, but we inevitably miss some as it is an automated process. Duplicate albums should be marked for merge.&amp;nbsp;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff0564</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ff0564" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">You can make namespaces, such as /user/metaeducation/labels and /user/metaeducation/labels/capitol,...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T16:54:33.0012Z</updated>
  </entry><entry>
    <author>
    <name>metaeducation</name>
    <uri>http://www.freebase.com:80/view/user/metaeducation</uri>
  </author>
    <content type="html">&lt;p&gt;Really?&amp;nbsp; This sounds good.&amp;nbsp; How would I go about doing this? &lt;/p&gt;&lt;p&gt;As you probably guessed from our discussion in Music, I'm actually trying to link to albums by catalog #.&amp;nbsp; (Imagine a manufacturer who has several releases of the same album, under different numbers, and would like the links to go to the appropriate Freebase article.&amp;nbsp; So that's what we're looking for.&amp;nbsp; A pretty URL with the catalog number in it, instead of GUID, which takes one to the appropriate page to upload cover art or edit the track info.)&lt;/p&gt;&lt;p&gt;It appears, however, that the albums are not correctly organized right now, since multiple releases of the same album are in Freebase as separate &amp;quot;albums&amp;quot;.&amp;nbsp; I'm worried about how doing the work of properly sorting releases might interfere with synchronizing the data with MusicBrainz... is it better just to let well enough alone? &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fef7e8</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fef7e8" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">Really?&amp;nbsp; This sounds good.&amp;nbsp; How would I go about doing this?  As you probably guessed from...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T14:09:59.0012Z</updated>
  </entry><entry>
    <author>
    <name>crism</name>
    <uri>http://www.freebase.com:80/view/user/crism</uri>
  </author>
    <content type="html">We&amp;rsquo;ve done this for some properties already, like NAICS industry classification, IMDb IDs for actors and films. You can do it yourself in your own namespace; it might be a bit unwieldy (/user/metaeducation/isbn/0817525766) but it would work. If you come up with a good one we could link it into a shorter place (like /authority/isbn).</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fef2fb</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fef2fb" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">We&amp;rsquo;ve done this for some properties already, like NAICS industry classification, IMDb IDs for...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T13:05:08.0012Z</updated>
  </entry><entry>
    <author>
    <name>metaeducation</name>
    <uri>http://www.freebase.com:80/view/user/metaeducation</uri>
  </author>
    <content type="html">&lt;p&gt;Hmmm...&lt;/p&gt;&lt;p&gt;Well, if I could spec this, I'd like to be able to form an inbound link to Freebase by providing a property name and a value, and simply get a page to view the article from that.&amp;nbsp; e.g. (&amp;quot;book/book_edition/isbn&amp;quot;, &amp;quot;817525766&amp;quot;)&amp;nbsp; If this does not specify a unique article, then come up with a list of all matches.&lt;/p&gt;It would be trivial for Metaweb to add an API that did this, it's just that once you start putting question marks and such in things it starts to confuse users, e.g.&lt;br /&gt;&lt;p&gt;http://freebase.com/api/view?property=&amp;quot;book/book_edition/isbn&amp;quot;?value=&amp;quot;817525766&amp;quot;&lt;/p&gt;&lt;p&gt;So maybe overloading view (or something otherwise prettier) could be good:&lt;/p&gt;&lt;p&gt;http://freebase.com/view/book/book_edition/isbn=817525766&lt;/p&gt;&lt;p&gt;A key goal would be that when you loaded an article this way, you would not be redirected, but rather see that &amp;quot;pretty&amp;quot; URL in the address bar.&lt;/p&gt;&lt;p&gt;This way pretty links would come from properties of the data, without anyone having to do extra work in disambiguation that hadn't already been done. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fed032</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fed032" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">Hmmm... Well, if I could spec this, I'd like to be able to form an inbound link to Freebase by...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T02:51:45.0012Z</updated>
  </entry><entry>
    <author>
    <name>brendan</name>
    <uri>http://www.freebase.com:80/view/user/brendan</uri>
  </author>
    <content type="html">&lt;p&gt;I think freebase has mimicked wikipedia in populating the &amp;quot;/view/en&amp;quot; (i.e. english language) namespace.&amp;nbsp; Clearly, there can be only one leonardo_da_vinci, and that's not a problem in many cases. There are probably many topics in freebase that could be reliably identified by their common name in that space but the freebase staff (who control it) haven't caught up.&amp;nbsp; Perhaps some collaborative feature in this are would be helpful e.g. &amp;quot;suggest a unique name for this topic&amp;quot;, &amp;quot;flag this topic as more deserving of 'john_smith' &amp;quot; :)&lt;/p&gt;&lt;p&gt;your idea of creating other url paths that represent namespaces is fantastic e.g. NYSE stock symbols could be /view/nyse/ge. This could go a long way for providing user readable urls to topics.&lt;/p&gt;&lt;p&gt;I think freebase.com should consider this a pretty hot feature request; it's not possible now. At least, the company could start creating url/namespaces, but allowing users to create (or at least nominate them) should be considered as well. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008feceb2</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008feceb2" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">I think freebase has mimicked wikipedia in populating the &amp;quot;/view/en&amp;quot; (i.e. english...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T01:45:27.0012Z</updated>
  </entry><entry>
    <author>
    <name>metaeducation</name>
    <uri>http://www.freebase.com:80/view/user/metaeducation</uri>
  </author>
    <content type="html">&lt;p&gt;Hi there...&lt;/p&gt;&lt;p&gt;I'm trying to use a &amp;quot;prettier&amp;quot; URL in my application than to the Freebase GUID-based one.&amp;nbsp; Got my hopes up from what I read at http://www.readwriteweb.com/archives/freebase_overview.php &lt;/p&gt;&lt;p&gt;&amp;quot;Each permanent object in the system has a GUID - a unique identifier, something like this: #9202a8c040000064..... The identifier can be used to refer to the object via URL and via queries. In addition to the GUID, there are other ways to refer to the object, for example, http://www.freebase.com/view/en/leonardo_da_vinci. Beyond that, there are even other aliases, for example, you can refer to a public company by its stock ticker symbol. But regardless of the reference, the key point is that you end up with the same, unique node in the system.&amp;quot; &lt;/p&gt;&lt;p&gt;That sounded good, but... how can you do this, besides typing in the stock symbol as an &amp;quot;alias&amp;quot;? &lt;/p&gt;&lt;p&gt;I'd imagine it's very common for a domain to have a property which is generally unique within that space.&amp;nbsp; All things being equal, people would like to see a link with that instead of the GUID.&amp;nbsp; But to have to type it in twice (once as a property and once as an &amp;quot;alias&amp;quot;) seems like the wrong answer.. &lt;/p&gt;&lt;p&gt;There are a lot of cool things in api/* but I haven't found one that would finesse something like this, any pointers?&amp;nbsp; I'm just trying to get a link that will jump to the Freebase page for the topic...based on, say, the ISBN# of a book.&lt;/p&gt; </content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fecbb6</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fecbb6" title="Help Center: Prettier links to Freebase than GUIDs"/>
    <summary type="html">Hi there... I'm trying to use a &amp;quot;prettier&amp;quot; URL in my application than to the Freebase GUID...</summary>
    <title>Help Center: Prettier links to Freebase than GUIDs</title>
    <updated>2008-08-22T00:21:44.0017Z</updated>
  </entry><entry>
    <author>
    <name>danm</name>
    <uri>http://www.freebase.com:80/view/user/danm</uri>
  </author>
    <content type="html">&lt;p&gt;Well, we don't have all of these reports, but you can take a look at what we do have here...&lt;a href="/view/guid/9202a8c04000641f8000000005bbe084"&gt; Reporting Tools for Freebase Experts&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We hope to add more such tools in the future. Thanks for your interest and suggestions!&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fe681d</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008fe681d" title="Roadmap of future features: How fast is freebase growing?"/>
    <summary type="html">Well, we don't have all of these reports, but you can take a look at what we do have here......</summary>
    <title>Roadmap of future features: How fast is freebase growing?</title>
    <updated>2008-08-21T02:40:35.0012Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">Ah, right, separating the make from the company.&amp;nbsp; I get it now.&amp;nbsp; And it makes a lot of sense.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f66b1f</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f66b1f" title="BMW: BMW manufacturer vs. automobile or motorcycle make"/>
    <summary type="html">Ah, right, separating the make from the company.&amp;nbsp; I get it now.&amp;nbsp; And it makes a lot of...</summary>
    <title>BMW: BMW manufacturer vs. automobile or motorcycle make</title>
    <updated>2008-08-19T23:42:55.0012Z</updated>
  </entry><entry>
    <author>
    <name>jeff</name>
    <uri>http://www.freebase.com:80/view/user/jeff</uri>
  </author>
    <content type="html">This makes sense to me.&amp;nbsp; The &amp;quot;Make&amp;quot; type doesn't really belong here; the brands can be brought in via the Automobile Company/Makes property.&amp;nbsp; (And it looks like we actually need a date-mediator on the Makes property, since MINI and Land Rover have been makes of different companies over the years.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f6644c</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f6644c" title="BMW: BMW vs BMW Group"/>
    <summary type="html">This makes sense to me.&amp;nbsp; The &amp;quot;Make&amp;quot; type doesn't really belong here; the brands can...</summary>
    <title>BMW: BMW vs BMW Group</title>
    <updated>2008-08-19T21:43:00.0012Z</updated>
  </entry><entry>
    <author>
    <name>jeff</name>
    <uri>http://www.freebase.com:80/view/user/jeff</uri>
  </author>
    <content type="html">I agree with Ed -- the topic he links to (&amp;quot;BMW&amp;quot;) should be reserved for the makes (I don't know whether the automobile and motorcycle makes should be different topics), and this topic should be reserved for whichever part of the BMW Group it corresponds to. But the two, company and make, should not use the same types.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f663fe</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f663fe" title="BMW: BMW manufacturer vs. automobile or motorcycle make"/>
    <summary type="html">I agree with Ed -- the topic he links to (&amp;quot;BMW&amp;quot;) should be reserved for the makes (I don...</summary>
    <title>BMW: BMW manufacturer vs. automobile or motorcycle make</title>
    <updated>2008-08-19T21:37:56.0012Z</updated>
  </entry><entry>
    <author>
    <name>ralf</name>
    <uri>http://www.freebase.com:80/view/user/ralf</uri>
  </author>
    <content type="html">&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;It would be nice to have a page with some number showing how fast the database is growing.&lt;/p&gt;&lt;p&gt;Like:&lt;/p&gt;&lt;p&gt;New releations added in the last 24 hours &lt;/p&gt;&lt;p&gt;Releations deleted in the last 24 hours &lt;/p&gt;&lt;p&gt;Topics created in the last 24 hours&amp;nbsp; &lt;/p&gt;&lt;p&gt;New releations added in the last 7 days&lt;/p&gt;&lt;p&gt;Releations deleted in the last 7 days &lt;/p&gt; &lt;p&gt;Topics created in the last 7 days&lt;/p&gt;&lt;p&gt;...&lt;/p&gt;&lt;p&gt;Or may be such a page already exists and I just don't know?&lt;/p&gt;&lt;p&gt;&amp;nbsp;- Ralf &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f659b4</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f659b4" title="Roadmap of future features: How fast is freebase growing?"/>
    <summary type="html">Hello, It would be nice to have a page with some number showing how fast the database is growing. ...</summary>
    <title>Roadmap of future features: How fast is freebase growing?</title>
    <updated>2008-08-19T19:23:46.0005Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">&lt;p&gt;I'm sorry, I checked my source again and there is a subsidiary for Rolls-Royce Motor Cars GmbH in Germany and Rolls-Royce Motor Cars Ltd in England.&amp;nbsp; &lt;/p&gt;&lt;p&gt;However, I think it is safe to say that MINI, Rolls-Royce and BMW are brands of the company.&amp;nbsp; &lt;/p&gt;&lt;p&gt;Actual legal subsidiaries are often a totally different thing.&amp;nbsp; For BMW's &amp;quot;principal subsidiaries&amp;quot;, you can check their Annual Report.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f65947</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f65947" title="BMW: BMW vs BMW Group"/>
    <summary type="html">I'm sorry, I checked my source again and there is a subsidiary for Rolls-Royce Motor Cars GmbH in...</summary>
    <title>BMW: BMW vs BMW Group</title>
    <updated>2008-08-19T19:15:52.0012Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">This topic appears to be for the parent company Bayerische Motoren Werke AG, so we need to make sure the integrity of the company remains if we break it up.</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f65896</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f65896" title="BMW: BMW manufacturer vs. automobile or motorcycle make"/>
    <summary type="html">This topic appears to be for the parent company Bayerische Motoren Werke AG, so we need to make...</summary>
    <title>BMW: BMW manufacturer vs. automobile or motorcycle make</title>
    <updated>2008-08-19T19:08:38.0012Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">&lt;p&gt;Bayerische Motoren Werke AG is the parent company and it has many BMW subsidiaries (like BMW Japan Corp, BMW Canada Inc).&amp;nbsp; &lt;/p&gt;&lt;p&gt;Rolls Royce is a brand, not a subsidiary (and it is not to be confused with the Rolls-Royce Group Plc!).&amp;nbsp; Mini is also a brand, not a subsidiary.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f65841</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f65841" title="BMW: BMW vs BMW Group"/>
    <summary type="html">Bayerische Motoren Werke AG is the parent company and it has many BMW subsidiaries (like BMW Japan...</summary>
    <title>BMW: BMW vs BMW Group</title>
    <updated>2008-08-19T19:06:49.0012Z</updated>
  </entry><entry>
    <author>
    <name>reut</name>
    <uri>http://www.freebase.com:80/view/user/reut</uri>
  </author>
    <content type="html">&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Thanks a lot for your help.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f51016</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008f51016" title="Data Modeling Guide: New data"/>
    <summary type="html">Hi, Thanks a lot for your help. </summary>
    <title>Data Modeling Guide: New data</title>
    <updated>2008-08-19T05:12:35.0012Z</updated>
  </entry><entry>
    <author>
    <name>crism</name>
    <uri>http://www.freebase.com:80/view/user/crism</uri>
  </author>
    <content type="html">&lt;p&gt;To be precise, Bryan&amp;rsquo;s query will find things that were created this month, which are also of type /film/film. To find new assertions, you have to get a little more complicated.&lt;/p&gt;&lt;p&gt;[&lt;br /&gt;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot; : null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot; : {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot; : &amp;quot;/film/film&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;link&amp;quot; : {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;timestamp&amp;gt;&amp;quot; : &amp;quot;2008-08&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;]&lt;/p&gt;&lt;p&gt;will find things who have had their film type asserted this month.&lt;/p&gt;&lt;p&gt;[&lt;br /&gt;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot; : null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot; : [&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;id&amp;quot; : null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;link&amp;quot; : {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;timestamp&amp;gt;&amp;quot; : &amp;quot;2008-08&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ]&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;]&lt;/p&gt;&lt;p&gt;will find things that have had new types added this month. In general, for any property assertion, you can ask about the timestamp on the link. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008de1956</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008de1956" title="Data Modeling Guide: New data"/>
    <summary type="html">To be precise, Bryan&amp;rsquo;s query will find things that were created this month, which are also of...</summary>
    <title>Data Modeling Guide: New data</title>
    <updated>2008-08-07T17:19:48.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;You can query against the timestamp, something along the lines of:&lt;/p&gt;&lt;p&gt;[&lt;br /&gt;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;name&amp;quot; : null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;timestamp&amp;quot; : null,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;timestamp&amp;gt;&amp;quot; : &amp;quot;2008-08&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;type&amp;quot; : &amp;quot;/film/film&amp;quot;&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;]&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This returns films that were added this month. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008de1751</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008de1751" title="Data Modeling Guide: New data"/>
    <summary type="html">You can query against the timestamp, something along the lines of: [&amp;nbsp; {&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot...</summary>
    <title>Data Modeling Guide: New data</title>
    <updated>2008-08-07T16:29:24.0012Z</updated>
  </entry><entry>
    <author>
    <name>reut</name>
    <uri>http://www.freebase.com:80/view/user/reut</uri>
  </author>
    <content type="html">&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can i get the data that were added from specific date (mqlread)&lt;/p&gt;&lt;p&gt;&amp;nbsp;Tx. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ddfb90</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008ddfb90" title="Data Modeling Guide: New data"/>
    <summary type="html">Hi, &amp;nbsp; How can i get the data that were added from specific date (mqlread) &amp;nbsp;Tx.  </summary>
    <title>Data Modeling Guide: New data</title>
    <updated>2008-08-07T04:30:18.0017Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;Thanks, Ed.  &lt;br /&gt;
I think Physiognomy and Satellite sensor status (the properties) should be separate, discrete objects than Physiognomy and Satellite sensor status (the topic and LC) and not conflated.  You do have a separate Physiognomy type (http://www.freebase.com/tools/schema/user/spatialed/land_cover/physiognomy) - should that have included types of topic and LC?&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000087ff6dd</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000087ff6dd" title="spatialed: Properties co-typed as other types"/>
    <summary type="html">Thanks, Ed.
I think Physiognomy and Satellite sensor status (the properties) should be separate,...</summary>
    <title>spatialed: Properties co-typed as other types</title>
    <updated>2008-07-01T15:34:09.0005Z</updated>
  </entry><entry>
    <author>
    <name>spatialed</name>
    <uri>http://www.freebase.com:80/view/user/spatialed</uri>
  </author>
    <content type="html">&lt;p&gt;Sure but they were purposeful typings. LC is a bucket type I created for all types that have something to do with land cover mapping even if they are best placed in another domain. They are usually topics too. No problem if you want to detype them. I've put that project on the shelf for a little bit and know how to pick it back up later. &lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000087fcbb6</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000087fcbb6" title="spatialed: Properties co-typed as other types"/>
    <summary type="html">Sure but they were purposeful typings. LC is a bucket type I created for all types that have...</summary>
    <title>spatialed: Properties co-typed as other types</title>
    <updated>2008-07-01T04:09:05.0012Z</updated>
  </entry><entry>
    <author>
    <name>cheunger</name>
    <uri>http://www.freebase.com:80/view/user/cheunger</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;Hi Ed,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I've noticed that you have 2 properties, &lt;a href="/tools/explore/9202a8c04000641f8000000006acbd8c"&gt;Physiognomy&lt;/a&gt; and &lt;a href="/tools/explore/9202a8c04000641f8000000006c84f3f"&gt;Satellite sensor status&lt;/a&gt; cotyped as &lt;a href="/view/user/spatialed/land_cover/lc"&gt;LC&lt;/a&gt; and &lt;a href="/view/common/topic"&gt;Topic&lt;/a&gt;.&amp;nbsp; I'm guessing this might have been an errant mistyping due to autocomplete.&amp;nbsp; I'd like to detype them - is that ok? &lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008791e38</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008791e38" title="spatialed: Properties co-typed as other types"/>
    <summary type="html">Hi Ed, &amp;nbsp;I've noticed that you have 2 properties, Physiognomy and Satellite sensor status...</summary>
    <title>spatialed: Properties co-typed as other types</title>
    <updated>2008-06-30T16:41:39.0012Z</updated>
  </entry><entry>
    <author>
    <name>evening</name>
    <uri>http://www.freebase.com:80/view/user/evening</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;I happened to be looking at my state's endangered &amp;amp; threatened wildlife list and they had both state and federal status.&lt;/p&gt;&lt;p&gt;So that might be something to consider.&amp;nbsp; Even if you only want to do federal level, it should be clear that it is.&amp;nbsp;&lt;/p&gt;&lt;p&gt;And something else I just thought of, is you'd probably need a country field, or source/location, so people knew where it was endangered/threatened.&amp;nbsp; &lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000085e48dc</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000085e48dc" title="Organism Classification: Conservation Status "/>
    <summary type="html">I happened to be looking at my state's endangered &amp;amp; threatened wildlife list and they had both...</summary>
    <title>Organism Classification: Conservation Status </title>
    <updated>2008-06-11T20:37:42.0001Z</updated>
  </entry><entry>
    <author>
    <name>jeff</name>
    <uri>http://www.freebase.com:80/view/user/jeff</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;I agree with Ed's suggestion about the model, but I would add a date for delisting as well.&amp;nbsp; &lt;/p&gt;&lt;p&gt;What I'd recommend is creating an &amp;quot;organism classification&amp;quot; type (or something similarly-named) in your private domain with the &amp;quot;conservation status&amp;quot; property, and try out some models there. Post back here (or on the data-modelers' list) when/if you want feedback. If it seems to work well, it could eventually get moved to the commons Biology domain. &lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000085e1276</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000085e1276" title="Organism Classification: Conservation Status "/>
    <summary type="html">I agree with Ed's suggestion about the model, but I would add a date for delisting as well.&amp;nbsp;  ...</summary>
    <title>Organism Classification: Conservation Status </title>
    <updated>2008-06-11T20:01:33.0000Z</updated>
  </entry><entry>
    <author>
    <name>spatialed</name>
    <uri>http://www.freebase.com:80/view/user/spatialed</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;I'd suggest modeling an &amp;quot;organism conservation status&amp;quot; type or something more inclusive sounding and then add it on a case by case basis. For example, I have imported &lt;a href="/view/user/spatialed/bird_codes/partners_in_flight_code"&gt;Partners in Flight conservation status codes&lt;/a&gt; that are only applicable to birds in the Western Hemisphere. These should probably be added as part of CVTs with date and location properties. You could also add US conservation categories of threatened and endangered or subset it for state listings.&amp;nbsp;  &lt;/p&gt;&lt;p&gt;I would create a CVT with status code (that links to the status classification system), date, and location at a minimum. For example, Bald Eagles are going through a US federal delisting period but may still be listed as endangered at the state level in some states and their status today in the US is different than it was a year ago. So, those three properties (code, date, location) should be sufficient but are also essential. &amp;nbsp; &lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000085da608</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000085da608" title="Organism Classification: Conservation Status "/>
    <summary type="html">I'd suggest modeling an &amp;quot;organism conservation status&amp;quot; type or something more inclusive...</summary>
    <title>Organism Classification: Conservation Status </title>
    <updated>2008-06-11T05:41:15.0007Z</updated>
  </entry><entry>
    <author>
    <name>jamslevy</name>
    <uri>http://www.freebase.com:80/view/user/jamslevy</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;I'd like to add a &amp;quot;conservation status&amp;quot; property to the schema, so that I can start adding endangered/extinct species data. &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm assuming that &amp;quot;organism classification&amp;quot; would be the right topic...&amp;nbsp;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000085d65d6</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000085d65d6" title="Organism Classification: Conservation Status "/>
    <summary type="html">I'd like to add a &amp;quot;conservation status&amp;quot; property to the schema, so that I can start...</summary>
    <title>Organism Classification: Conservation Status </title>
    <updated>2008-06-11T04:28:19.0005Z</updated>
  </entry><entry>
    <author>
    <name>spatialed</name>
    <uri>http://www.freebase.com:80/view/user/spatialed</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;I found the &lt;a href="http://www.unep-wcmc.org/reference/copyright.html"&gt;copyright info for UNEP-WCMC data&lt;/a&gt; (the last link in my initial post): &amp;quot;&lt;font size="-1"&gt;Use and reproduction of this data is authorised for educational                or other non-commercial purposes without prior permission from the                copyright holders. &lt;/font&gt;&lt;font size="-1"&gt; Use or reproduction of the data for commercial                purposes is prohibited without the prior written permission of the                copyright holders.&amp;quot; &lt;/font&gt;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008124903</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008124903" title="Protected Places: Some protected area databases"/>
    <summary type="html">I found the copyright info for UNEP-WCMC data (the last link in my initial post): &amp;quot;Use and...</summary>
    <title>Protected Places: Some protected area databases</title>
    <updated>2008-05-05T21:49:16.0000Z</updated>
  </entry><entry>
    <author>
    <name>jeff</name>
    <uri>http://www.freebase.com:80/view/user/jeff</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;&lt;a href="http://www.unep-wcmc.org/wdpa/"&gt;WDPA &lt;/a&gt;is strictly non-commercial. The protected areas database is &lt;a href="http://www.consbio.org/cbi/projects/PAD/index.htm"&gt;selling&lt;/a&gt; their data, which doesn't usually map well to CC-BY. I can't find anything about IUCN. &lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000081248cd</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000081248cd" title="Protected Places: Some protected area databases"/>
    <summary type="html">WDPA is strictly non-commercial. The protected areas database is selling their data, which doesn't...</summary>
    <title>Protected Places: Some protected area databases</title>
    <updated>2008-05-05T21:48:49.0018Z</updated>
  </entry><entry>
    <author>
    <name>spatialed</name>
    <uri>http://www.freebase.com:80/view/user/spatialed</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;Here's another one: &lt;a href="http://www.geog.ucsb.edu/%7Egavin/mad/mad.html"&gt;Managed Areas Database&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Note: &amp;quot;RSRU no longer staffs resources able to update this dataset. We are interested in finding a responsible agency to take over the update/upkeep process for the MAD database. Since MAD has been described as &amp;quot;incredibly valuable&amp;quot; by many of the education and research community, it is hoped that someone would be willing to take over.&amp;quot;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000812419d</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000812419d" title="Protected Places: Some protected area databases"/>
    <summary type="html">Here's another one: Managed Areas Database Note: &amp;quot;RSRU no longer staffs resources able to...</summary>
    <title>Protected Places: Some protected area databases</title>
    <updated>2008-05-05T21:30:25.0007Z</updated>
  </entry><entry>
    <author>
    <name>spatialed</name>
    <uri>http://www.freebase.com:80/view/user/spatialed</uri>
  </author>
    <content type="html">&lt;p&gt;No idea. Those funded through US federal grants are supposed to be open access but that often is not the case. I would expect the same goes for databases funded by other governments.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f80000000081236ec</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f80000000081236ec" title="Protected Places: Some protected area databases"/>
    <summary type="html">No idea. Those funded through US federal grants are supposed to be open access but that often is...</summary>
    <title>Protected Places: Some protected area databases</title>
    <updated>2008-05-05T21:01:46.0007Z</updated>
  </entry><entry>
    <author>
    <name>jeff</name>
    <uri>http://www.freebase.com:80/view/user/jeff</uri>
  </author>
    <content type="html">&lt;p&gt;Thanks!&amp;nbsp; Do you know what the licensing on those databases is?&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f800000000812179f</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f800000000812179f" title="Protected Places: Some protected area databases"/>
    <summary type="html">Thanks!&amp;nbsp; Do you know what the licensing on those databases is? </summary>
    <title>Protected Places: Some protected area databases</title>
    <updated>2008-05-05T19:41:04.0007Z</updated>
  </entry><entry>
    <author>
    <name>spatialed</name>
    <uri>http://www.freebase.com:80/view/user/spatialed</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;&lt;a href="http://www.unep-wcmc.org/wdpa/"&gt;World Database on Protected Areas&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.consbio.org/cbi/projects/PAD/index.htm"&gt;Protected Area Database&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://cms.iucn.org/about/union/commissions/wcpa/wcpa_overview/wcpa_ppa/index.cfm"&gt;IUCN Protected Area Program&lt;/a&gt; and related &lt;a href="http://www.unep-wcmc.org/protected_areas/data/nat2.htm"&gt;Prototype Nationally Designated Protected Areas Database&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008104fef</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000008104fef" title="Protected Places: Some protected area databases"/>
    <summary type="html">World Database on Protected Areas Protected Area Database IUCN Protected Area Program and related ...</summary>
    <title>Protected Places: Some protected area databases</title>
    <updated>2008-05-04T17:35:46.0005Z</updated>
  </entry><entry>
    <author>
    <name>spatialed</name>
    <uri>http://www.freebase.com:80/view/user/spatialed</uri>
  </author>
    <content type="html">&lt;p&gt;Good catch. Thanks. I was still figuring out how to work with Included types when I created those schema. They probably still need some work but I removed the cyclical relationships. Let me know if you see any other problems. I plan to get back to these schema and start adding a lot more data for them May-June.&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000007e54039</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000007e54039" title="spatialed: Cyclical included types"/>
    <summary type="html">Good catch. Thanks. I was still figuring out how to work with Included types when I created those...</summary>
    <title>spatialed: Cyclical included types</title>
    <updated>2008-04-17T03:03:35.0000Z</updated>
  </entry><entry>
    <author>
    <name>augusto</name>
    <uri>http://www.freebase.com:80/view/user/augusto</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;you have a cyclical relationship:&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="http://freebase.com/view/schema/user/spatialed/default_domain/satellite_image_product"&gt;http://freebase.com/view/schema/user/spatialed/default_domain/satellite_image_product&amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;i click on the first included type &amp;quot;&lt;span class="Label primary"&gt;Land cover classification system&lt;/span&gt;&lt;span class="comma"&gt;&amp;quot; of &amp;quot;Satellite Image Product&amp;quot;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://freebase.com/view/schema/user/spatialed/default_domain/land_cover_classification_system"&gt;http://freebase.com/view/schema/user/spatialed/default_domain/land_cover_classification_system&lt;/a&gt;&lt;/p&gt;&lt;p&gt;and &amp;quot;Land cover classification system&amp;quot; has as its first included type &amp;quot;Satellite Image Product&amp;quot;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000007e51bfc</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000007e51bfc" title="spatialed: Cyclical included types"/>
    <summary type="html">you have a cyclical relationship:&amp;nbsp; http://freebase.com/view/schema/user/spatialed/default...</summary>
    <title>spatialed: Cyclical included types</title>
    <updated>2008-04-16T20:00:49.0007Z</updated>
  </entry><entry>
    <author>
    <name>augusto</name>
    <uri>http://www.freebase.com:80/view/user/augusto</uri>
  </author>
    <content type="html">&lt;p&gt;&lt;p&gt;i'm seeing a cyclical relationship in:&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="http://freebase.com/view/schema/user/spatialed/default_domain/satellite_image_product"&gt;http://freebase.com/view/schema/user/spatialed/default_domain/satellite_image_product&amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;a satellite image product has itself as an included type.&lt;/p&gt;&lt;p&gt;is this an error?&amp;nbsp;&lt;/p&gt;&lt;/p&gt;</content>
    <id>http://www.freebase.com:80/view/guid/9202a8c04000641f8000000007e5165b</id>
    <link rel="alternate" type="text/html" href="http://www.freebase.com:80/view/guid/9202a8c04000641f8000000007e5165b" title="spatialed: Cyclical included types"/>
    <summary type="html">i'm seeing a cyclical relationship in:&amp;nbsp; http://freebase.com/view/schema/user/spatialed/default...</summary>
    <title>spatialed: Cyclical included types</title>
    <updated>2008-04-16T18:30:13.0000Z</updated>
  </entry>
</feed>