Re: Can PerformanceRole adequately capture a Musician's role against a MusicAlbum ?

Thanks Vicki.  Yeah the roleName...

Let's get this one up on official Schema.org as a good example.  It pretty
much covers all the common cases.

{
    "@context": "http://schema.org",
    "@type": "MusicGroup",
    "@id": "http://musicbrainz.org/artist/b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d",
    "name": "Beatles",
    "sameAs": "http://www.thebeatles.com",
    "foundingLocation": {
        "@type": "City",
        "name": "Liverpool"
    },
    "foundingDate": "1957",
    "dissolutionDate": "1970",
    "genre": "Rock",
    "album": {
        "@type": "MusicAlbum",
        "name": "The Beatles",
        "alternateName": "The White Album",
        "@id": "http://musicbrainz.org/release-group/055be730-dcad-31bf-b550-45ba9c202aa3",
        "datePublished": "1968"
    },
    "member": [
      {
        "@type": "OrganizationRole",
        "member": {
          "@type": "Person",
          "name": "John Lennon"
        },
        "startDate": "1957",
        "endDate": "1970",
        "roleName": ["guitar", "lead vocals"]
      },
      {
        "@type": "OrganizationRole",
        "member": {
          "@type": "Person",
          "name": "Paul McCartney"
        },
        "startDate": "1957",
        "endDate": "1970",
        "roleName": ["bass guitar", "lead vocals"]
      },
      {
        "@type": "OrganizationRole",
        "member": {
          "@type": "Person",
          "name": "George Harrison"
        },
        "startDate": "1958",
        "endDate": "1970",
        "roleName": ["guitar", "lead vocals"]
      },
      {
        "@type": "OrganizationRole",
        "member": {
          "@type": "Person",
          "name": "Ringo Starr"
        },
        "startDate": "1962",
        "endDate": "1970",
        "roleName": "drums"
      }


On Tue, May 23, 2017 at 2:26 PM Vicki Tardif Holland <vtardif@google.com>
wrote:

> How odd. I remember writing examples, but cannot find them on schema.org.
>
> However, they do exist at
> http://linter.structured-data.org/examples/schema.org/MusicAlbum/
>
> - Vicki
>
> On Tue, May 23, 2017 at 12:43 PM, Thad Guidry <thadguidry@gmail.com>
> wrote:
>
>> We are lacking examples for this.
>>
>> I've been told offline by others that using Role to capture this could be
>> considered the "correct" method.
>>
>> But I cannot see the forest through the trees in this particular use
>> case...and others.
>>
>> A Musician credited as playing DoubleBass on an album.
>>
>> -Thad
>>
>
>

Received on Tuesday, 23 May 2017 19:49:20 UTC