Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Aggregations of creative works
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  1 message - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Peter Sefton  
View profile  
 More options Oct 3 2011, 7:58 pm
From: Peter Sefton <ptsef...@gmail.com>
Date: Tue, 4 Oct 2011 09:58:37 +1000
Local: Mon, Oct 3 2011 7:58 pm
Subject: Aggregations of creative works

Hi all,

I am wondering how best to mark up a creative work that is an aggregation
with links to sub-parts, for example the table of contents for an online
book with links to the chapters.

<article itemtype="http://schema.org/Book" itemscope>
<h1 itemprop="name">My book!</h1>
<ol>
<li><a href="./chapter1.html">Chapter One</a></li>
...
</ol>
</article>

I want to be able to say that the chapter is "partOf" the book or that the
book "aggregates" the chapters. I wondered about using Itemlist but I could
not work out how to code it.

 It might also be possible to use the OAI ORE terms, eg
http://www.openarchives.org/ore/terms/Aggregation (leaving aside the
distinction between resource maps and aggregations which is a bit
complicated for Schema.org).

<article itemtype="http://schema.org/Book" itemscope>
<h1 itemprop="name">My book!</h1>
<ol >
<li itemtype="http://schema.org/MediaObject" itemprop="associatedMedia"
itemscope><span itemprop="name"><a href="./chapter1.html" itemprop="
http://www.openarchives.org/ore/terms/aggregates">Chapter
One</a></span></li>
...
</ol>
</article>

This give the following JSON:

{
  "items": [
    {
      "type": "http://schema.org/Book",
      "properties": {
        "name": [
          "My book!"
        ],
        "associatedMedia": [
          {
            "type": "http://schema.org/MediaObject",
            "properties": {
              "name": [
                "Chapter One"
              ],
              "http://www.openarchives.org/ore/terms/aggregates": [
                "http://example.com/chapter1.html"
              ]
            }
          }
        ]
      }
    }
  ]

Any suggestions would be greatly appreciated.

Peter
--

Peter Sefton +61410326955 p...@ptsefton.com http://ptsefton.com
Gmail, Twitter & Skype name: ptsefton


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »