An embedded, typed link binding a standard.site document to an OpnShelf media item. Placed inside a document's open `links` union; gets no collection and no record of its own.
Properties
View raw schema
{
"type": "object",
"required": [
"mediaType",
"mediaId"
],
"properties": {
"mediaId": {
"type": "string",
"description": "TMDB movie ID or show ID"
},
"mediaType": {
"enum": [
"movie",
"show",
"season",
"episode"
],
"type": "string",
"description": "Media type"
},
"seasonNumber": {
"type": "integer",
"description": "Season number for season/episode items"
},
"episodeNumber": {
"type": "integer",
"description": "Episode number for episode items"
}
},
"description": "An embedded, typed link binding a standard.site document to an OpnShelf media item. Placed inside a document's open `links` union; gets no collection and no record of its own."
}