Re: Promoting namedPosition to Role and renaming it to roleName (was Re: September Update on Sports)

On 10/13/2014 09:05 PM, Markus Lanthaler wrote:
>   {
>     "@context": "http://schema.org",
>     "@type": "SportsTeam",
>     "name": "San Francisco 49ers",
>     "member": {
>       "@type": "OrganizationRole",
>       "name": "Joe Montana's Quarterback role",
>       "roleName": "http://en.wikipedia.org/wiki/Quarterback",
>       "startDate": "1979",
>       "endDate": "1992",
>       "member": {
>         "@type": "Person",
>         "name": "Joe Montana"
>       }
>     }
>   }
> 

maybe we could use multiple types if we want to use URL?

   {
     "@context": ["http://schema.org", { "w":
"http://en.wikipedia.org/wiki/" }],
     "@type": "SportsTeam",
     "name": "San Francisco 49ers",
     "member": {
       "@type": ["OrganizationRole", "w:Quarterback"]
       "name": "Joe Montana's Quarterback role",
       "startDate": "1979",
       "endDate": "1992",
       "member": {
         "@type": "Person",
         "name": "Joe Montana"
       }
     }
   }

Received on Monday, 13 October 2014 20:33:10 UTC