Webhook - TV shows could include Guids of show

Hello,

The webhooks for TV show episode does include a bunch of Guid for the currently played episode, but not for the show itself. This makes it very difficult to retrieve the actual Show details (for instance TMDb API does not allow to query using the TMDb episode ID).

Would it be possible to include this data in the JSON payload of the webhooks ?

"Metadata": {
  ...
  "Guid": [
    { "id": "imdb://tt9641260" },
    { "id": "tmdb://1969322" },
    { "id": "tvdb://7466317" }
  ]
  // Suggested addition
  "GrandparentGuid": [
    { "id": "imdb://tt2193021" },
    { "id": "tmdb://1412" },
    { "id": "tvdb://257655" }
  ]
}

Thank you