# ScheduleEvent

Endpoint to retrieve data for events in sessions, of the currently finalized draft

## Finds events by filtering a specific conference(frame).

> Gets \`ScheduleEvent\` objects.

```json
{"openapi":"3.1.1","info":{"title":"Converia API","version":"2.15.0"},"tags":[{"name":"ScheduleEvent","description":"Endpoint to retrieve data for events in sessions, of the currently finalized draft"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"description":"Api key has to be used to authenticate against the server. The token parameter has must be sent in the header","type":"apiKey","name":"token","in":"header"}},"schemas":{"ScheduleEvent":{"type":"object","description":"Represents the schedule event entity in Converia.","required":["id","title","start","end","session","type"],"properties":{"id":{"$ref":"#/components/schemas/EventId"},"title":{"type":"array","description":"The title of the event.","items":{"$ref":"#/components/schemas/Translation"}},"start":{"type":"string","description":"Time when the event starts.","format":"ISO-8601"},"end":{"type":"string","description":"Time when the event ends.","format":"ISO-8601"},"session":{"$ref":"#/components/schemas/SessionId"},"type":{"type":"string","enum":["PaperEvent","FreeEvent"],"description":"Type of the event."},"paper":{"type":"object","description":"Contains information about the related paper.","required":["id","authors"],"properties":{"id":{"type":"integer","description":"The primary key of the paper entity in Converia."},"abstract":{"type":"string","description":"The abstract text of the paper."},"authors":{"type":"array","description":"Authors of the paper.","items":{"$ref":"#/components/schemas/PaperAuthor"}},"files":{"type":"array","description":"Files related to the paper.","items":{"$ref":"#/components/schemas/PaperFiles"}}}}}},"EventId":{"type":"integer","description":"The primary key of the event entity in Converia.","minimum":1},"Translation":{"type":"object","description":"","required":["language","content"],"properties":{"language":{"type":"string","description":"","format":"Combination of ISO 639-1 alpha-2 and ISO 3166-1 alpha-2 codes, see RFC 5646.","minLength":5,"maxLength":5},"content":{"type":"string","description":"The translated content."}}},"SessionId":{"type":"integer","description":"The primary key of the session entity in Converia.","minimum":1},"PaperAuthor":{"type":"object","description":"Represents an author of a paper in Converia.","required":["id","presenter"],"properties":{"id":{"$ref":"#/components/schemas/PersonId"},"presenter":{"type":"boolean","description":"True if the author is a presenter, false otherwise."}}},"PersonId":{"type":"integer","description":"The primary key of the person entity in Converia.","minimum":1},"PaperFiles":{"type":"object","description":"Represents a paper file object in Converia.","required":["type","url"],"properties":{"type":{"type":"string","description":"Type of the paper file.","enum":["Abstract","Manuscript","ShortManuscript","Presentation"]},"url":{"type":"string","description":"Link to the paper file.","format":"uri"}}},"ErrorResult":{"type":"object","description":"Result format in an error case.","required":["errors"],"properties":{"errors":{"type":"array","items":{"$ref":"#/components/schemas/Error"}}}},"Error":{"type":"object","description":"Format of an error.","required":["code","message"],"properties":{"code":{"type":"integer"},"message":{"type":"string"}}}}},"paths":{"/rest-api/v2/frame/{id}/schedule/event":{"get":{"tags":["ScheduleEvent"],"description":"Gets `ScheduleEvent` objects.","summary":"Finds events by filtering a specific conference(frame).","parameters":[{"schema":{"type":"integer","format":"int64"},"name":"id","in":"path","description":"Id of the conference the events are loaded for.","required":true}],"responses":{"200":{"description":"Successful response","headers":{"Content-Language":{"schema":{"type":"string"},"description":"Comma separated language tags. Contains information about which language tags are provided by the API. Each language tag is a combination of ISO 639-1 alpha-2 and ISO 3166-1 alpha-2 codes."},"X-Rate-Limit-Interval":{"schema":{"type":"integer"},"description":"Interval of a time window in seconds"},"X-Rate-Limit-Reset":{"schema":{"type":"integer"},"description":"The remaining window before the credit limit resets in seconds"},"X-Rate-Limit-Remaining":{"schema":{"type":"integer"},"description":"The number of credits left for the time window"},"X-Rate-Limit-Limit":{"schema":{"type":"integer"},"description":"Credit limit per time window"}},"content":{"application/json":{"schema":{"title":"Result Record","type":"object","required":["meta","data"],"properties":{"meta":{"type":"object","required":["lastFinalization"],"properties":{"lastFinalization":{"type":"string","description":"","format":"ISO-8601"}}},"data":{"type":"array","items":{"$ref":"#/components/schemas/ScheduleEvent"}}}}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResult"}}}},"401":{"description":"Authentication problem","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResult"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResult"}}}},"404":{"description":"No resource found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResult"}}}},"429":{"description":"Rate limitation exceeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResult"}}}},"500":{"description":"Internal error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResult"}}}}}}}}}
```
