JsonList to Calenderevents in homeassisant

Hello there, I have a code which periodically updates a json File with events. I want to see these Events from the Json File in a calender in my homeassistant. I have seen some reletet questions here before, but none which helped me much.

My .json file has this form:

[
  {
    "title": "xxx",
    "start": "2023-10-28",
    "end": "2023-10-30"
  },
  {
    "title": "xxx",
    "start": "2023-12-02",
    "end": "2023-12-03"
  },
  {
    "title": "xxx",
    "start": "2023-12-30",
    "end": "2024-01-01"
  },
  {
    "title": "xxx",
    "start": "2024-01-01",
    "end": "2024-01-03"
  },
  {
    "title": "xxx",
    "start": "2024-08-30",
    "end": "2024-09-01"
  }
]

Thanks for any help given.

You can use the rest integration.

or the file integration

or the command line integration

Thanks, I will look into it