How could I represent the Movie
, TVSeries
or any other CreativeWork
items a Person
acted or participated in?
I mean, something like:
{
"@context": "http://schema.org/",
"@type": "http://schema.org/Person",
"name": "John Doe",
"performerIn" : [
{
"@type": "http://schema.org/Movie",
"name": "A Movie"
},
{
"@type": "http://schema.org/Movie",
"name": "Another Movie"
}
]
}
Unfortunately, performerIn
works only for Event
items.