Tagging multiple people within an organization ... feedback on example needed

48 views
Skip to first unread message

glawrie

unread,
Jun 13, 2011, 8:22:01 PM6/13/11
to Schema.org Discussion
I would be grateful for some feedback on the microdata form used on a
page that lists the employees in my firm.

Here is a link... http://www.2gc.co.uk/a2gc-people

There are two things I'm interested in getting views on.

First: the coding of the page makes it necessary to split the
microdata into two blocks for each person (as the data appears in
different places within the html). What is the 'correct' way of
showing that this data is connected - or is this not necessary. I
realise that redesigning the page to allow the two blocks to become
one would solve this, but this will not happen soon, and I want to
know what is the least-worst solution in the interim.

Second: currently all the people appear as 'employees' of the
organization - so Google Rich Snippets Testing Tool shows all the
information on the page within a single "item". Is this correct? I
can't see how else to structure the data and still show they are
employees of the firm - but maybe I'm missing something...

Thanks in advance for any comments / help offered.

Philip Jägenstedt

unread,
Jun 14, 2011, 3:02:23 AM6/14/11
to schemaorg-...@googlegroups.com
On Tue, Jun 14, 2011 at 02:22, glawrie <gavin....@gmail.com> wrote:
> I would be grateful for some feedback on the microdata form used on a
> page that lists the employees in my firm.
>
> Here is a link... http://www.2gc.co.uk/a2gc-people
>
> There are two things I'm interested in getting views on.
>
> First: the coding of the page makes it necessary to split the
> microdata into two blocks for each person (as the data appears in
> different places within the html).  What is the 'correct' way of
> showing that this data is connected - or is this not necessary.  I
> realise that redesigning the page to allow the two blocks to become
> one would solve this, but this will not happen soon, and I want to
> know what is the least-worst solution in the interim.

Microdata has an itemref attribute to solve exactly this kind of
problem, see http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#attr-itemref

I took the source of http://www.2gc.co.uk/a2gc-people and massaged it
until it was both valid HTML and seems to express what you probably
intended. There were many small errors which would have caused the
wrong data to be extracted (at least per spec, which I assume is what
the sponsors are implementing).

<div id="bd" itemscope itemtype="http://schema.org/Organization">
<h1>People</h1>
<p itemprop="description"><span itemprop="name">2GC Active
Management</span> is a professional services firm - the quality of
our work relies on the quality of our people. 2GC has assembled a
team of highly experienced performance management experts, and
together we are able to bring truly world-class knowledge and
practical expertise to bear for our clients.</p>
<link itemprop="url" href="#">
<meta itemprop="foundingDate" content="1999-04-19">

<div class="photogrid">
<div class="photoitem" id="div_GL" itemprop="employees"
itemscope itemtype="http://schema.org/Person" itemref="GL">
<img itemprop="image" src="/images/GJGL.jpg"
alt="Gavin Lawrie - Managing Director">
<div class="name" itemprop="name">Gavin Lawrie</div>
<div class="title" itemprop="jobTitle">Founder &amp;
Managing Director</div>
<link itemprop="url"
href="http://www.2gc.co.uk/a2gc-people#GL">
</div>
</div>

<div id="bio-display" itemscope>
<div class="bio-text" id="GL"><dl>
<dt>Gavin Lawrie: Founder &amp; Managing Director</dt>
<dd itemprop="description">Gavin is both a
classically trained and experienced strategic management consultant,
and one of the UK&#8217;s leading experts on the Balanced Scorecard
and the consulting processes needed to support its design. His
Balanced Scorecard expertise derives from his leadership of projects
to develop Balanced Scorecard designs for major corporations across
three continents and a wide range of industries, and from working on
the development of Balanced Scorecards with both David Norton and
Robert Kaplan (creators of the Balanced Scorecard concept). </dd>
<dd itemprop="description">Prior to founding 2GC in
April 1999, Gavin was a leading member of the International Balanced
Scorecard Practice of Renaissance Worldwide.</dd>
<dd itemprop="description">Gavin holds an MBA degree
from <span itemprop="alumniOf">London Business School</span>, and a
BEng Degree from the <span itemprop="alumniOf">University of
London</span>. He is a member of the <span
itemprop="affiliation">Chartered Institute of Marketing</span>, and
the <span itemprop="affiliation">Strategic Planning Society</span>.
Gavin has spoken widely at conferences and seminars on issues
surrounding the development and implementation of Balanced
Scorecards.</dd>
</dl></div>
</div>
</div>

> Second: currently all the people appear as 'employees' of the
> organization - so Google Rich Snippets Testing Tool shows all the
> information on the page within a single "item".  Is this correct?  I
> can't see how else to structure the data and still show they are
> employees of the firm - but maybe I'm missing something...

This is because you weren't making each employee its own item, see above.

There are a few things to note here. Obviously, itemref allows you to
link in properties from elsewhere in the page. However, since that
part of the page is still a descendant of your Organization item, you
need to do something to ensure that the properties don't end up on the
Organization as well. I did by putting a dummy itemscope on <div
id="bio-display" itemscope>. This is a bit of a hack, because you will
still get a type-less item with these properties in, but it's probably
a lot better than accidentally stating that you organization has
"affiliation" with "Strategic Planning Society" etc.

May I use your markup as an example to illustrate this particular
problem with itemref to the WHATWG? Perhaps some spec improvement
could be made here.

Try pasing the code into http://foolip.org/microdatajs/live/ to see
the results live.

--
Philip Jägenstedt

Philip Jägenstedt

unread,
Jun 14, 2011, 3:03:49 AM6/14/11
to schemaorg-...@googlegroups.com
On Tue, Jun 14, 2011 at 09:02, Philip Jägenstedt <phi...@foolip.org> wrote:

> valid HTML

If forgot to mention, http://validator.nu/ is the validator I was using.

Now if only there were a validator which could validate microdata
vocabularies at the same time...

--
Philip Jägenstedt

glawrie

unread,
Jun 14, 2011, 3:10:05 AM6/14/11
to schemaorg-...@googlegroups.com
Hi Philip,

Thanks for your comments / suggestions.  Very much appreciated.

Yes, of course you can use the code as an example if it is helpful.

Regards

Gavin
Message has been deleted

Philip Jägenstedt

unread,
Jun 15, 2011, 1:25:37 PM6/15/11
to schemaorg-...@googlegroups.com
On Wed, Jun 15, 2011 at 18:46, Steve Ray <stev...@sv.cmu.edu> wrote:
> This example reminds me of what schema.org seems to be missing: Is there any
> way to link the people to the organization? Am I missing something, or is
> schema.org just a tagging hierarchy without relations?

Organization has 3 Person-properties: employees, founders and members.
Using any of those would be linking a person to an organization.

--
Philip Jägenstedt

Philip Jägenstedt

unread,
Jul 8, 2011, 4:46:34 AM7/8/11
to schemaorg-...@googlegroups.com

I sent feedback about this and Hixie has answered, search for "This
solution is not really a solution" in
http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2011-July/032342.html

I'm not sure if this helps you with your concrete problem. If you
spend some time adding wrapping <div>s and id's you can always link
things together with itemref without the bogus itemscope attribute I
suggested.

--
Philip Jägenstedt

Reply all
Reply to author
Forward
0 new messages