Issue
remainingAttendeeCapacity must be provided to ensure to ensure events have capacity.
Example
Not like this:
{
"@context": "https://openactive.io/",
"type": "ScheduledSession",
"maximumAttendeeCapacity": 100,
}
Like this:
{
"@context": "https://openactive.io/",
"type": "ScheduledSession",
"remainingAttendeeCapacity": 20,
"maximumAttendeeCapacity": 100,
}