Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions svc/api/responses/MatchResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,24 @@ export default {
description: 'replay_url',
type: 'string',
},
pauses: {
description:
'Array containing information about pauses during the game. Each item contains the time and duration of the pause.',
type: 'array',
items: {
type: 'object',
properties: {
time: {
description: 'Time in seconds at which pause started',
type: 'integer',
},
duration: {
description: 'The duration of the pause',
type: 'integer',
},
},
},
}
},
},
};