-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Given a response object like:
{
"@context": "https://schema.org",
"type": "Collection",
"hasPart": [
{
"id": "123",
"type": "ScreeningEvent",
"location": "abc"
},
{
"id": "456",
"type": "ScreeningEvent",
"location": "abc"
}
]
}where the Collection is a collection of objects of type ScreeningEvent, should the response include the abc object?
{
"@context": "https://schema.org",
"id": "abc",
"type": "MovieTheater",
"name": "ABC"
}If so, what's the best practice for doing so? Would it be best to use an aliased @included ? Or would the initial response be a "Collection of Collections"? If so, should hasPart be an id map? or would it be better to drop that and use custom properties of some kind?
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Non TR Work