Entur - whitelisted lines per StopID

Would be nice to be able to add a whitelist of lines per StopID in the EnTur integration. I currently live in a junction with multiple lines crossing and would like to narrow the sensor to only show the relevant lines per stopID.

According to ChatGPT this can be done by updating the PLATFORM_SCHEMA and the async_setup_platform so that the whitelisted lines per stop could be modified in the sensor platform like this:

sensor:
  - platform: entur
    stop_ids:
      - stop_id: "StopPlace:12345"
        line_whitelist:
          - "Line1"
          - "Line2"
      - stop_id: "StopPlace:67890"
        line_whitelist:
          - "Line3"