Missing properties in OpenAPI Spec

The downloadable Open API specification is not representing what actually returns from /past_instances/{webinarId}/instances. Docs at </docs/api/meetings/#tag/webinars/get/past_webinars/{webinarId}/instances>

I’m trying to establish a Pact bi-directional contract test against the spec, but this endpoint doesn’t define occurence_id, even though it is returned and we require it for recurring webinars.

Can the specification be updated to reflect the accurate, up to date information please? This should be auto-generated and uploaded on every release to reflect the code base.

Example response:

{
    "webinars": [{
            "uuid": "/LyIZcj+Tsufe23r9XUSnA==",
            "occurrence_id": "1776726000000",
            "start_time": "2026-04-20T22:50:30Z"
        }
    ]
}

Thanks