AW: new itemscope or not?

Or DBpedia URIs, because they can be resolved:

<div itemscope itemtype ="http://schema.org/Book"
itemid="http://dbpedia.org/resource/Hamlet">
    <h1 itemprop="name">Hamlet</h1>
   <span itemid="http://dbpedia.org/resource/Shakespeare" itemprop="author"
itemscope itemtype="http://schema.org/Person">
       <span itemprop="name">Shakespeare, William</span>
   </span>
</div>


-----Ursprüngliche Nachricht-----
Von: ed.summers@gmail.com [mailto:ed.summers@gmail.com] Im Auftrag von Ed
Summers
Gesendet: Freitag, 7. September 2012 21:03
An: Dawson, Laura
Cc: Thad Guidry; public-vocabs@w3.org
Betreff: Re: new itemscope or not?

On Fri, Sep 7, 2012 at 2:51 PM, Dawson, Laura <Laura.Dawson@bowker.com>
wrote:
> There will be - VIAF. We're working with OCLC, IFRRO, CISAC, British 
> Library, Bibliotheque Nationale, and several other organizations - the 
> data itself is housed in VIAF and is publicly available.

Oh, if you know the VIAF URL you could do this:

<div itemscope itemtype ="http://schema.org/Book">
  <span itemid="http://viaf.org/viaf/96994048/" itemprop="author"
itemscope itemtype="http://schema.org/Person">
    <span itemprop="name">Shakespeare, William</span>
  </span>
</div>

It would be interesting to know if the HTML spec allowed multiple
identifiers, similar to how other HTML attributes work:

<div itemscope itemtype ="http://schema.org/Book">
  <span itemid="http://viaf.org/viaf/96994048/
urn:isni:0000000121032683" itemprop="author" itemscope
itemtype="http://schema.org/Person">
    <span itemprop="name">Shakespeare, William</span>
  </span>
</div>

//Ed

Received on Friday, 7 September 2012 19:30:30 UTC