diff --git a/docs/docs.go b/docs/docs.go index b7ae024..e7aecb5 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -301,7 +301,8 @@ const docTemplate = `{ { "type": "array", "items": { - "type": "integer" + "type": "integer", + "format": "int64" }, "collectionFormat": "csv", "description": "Comma-separated array of time IDs (25 Limit)", @@ -631,12 +632,6 @@ const docTemplate = `{ "Map": { "type": "object", "properties": { - "creator": { - "type": "string" - }, - "date": { - "type": "string" - }, "display_name": { "type": "string" }, @@ -645,6 +640,9 @@ const docTemplate = `{ }, "id": { "type": "integer" + }, + "thumbnail": { + "type": "integer" } } }, diff --git a/docs/swagger.json b/docs/swagger.json index bdd5d24..372f700 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -294,7 +294,8 @@ { "type": "array", "items": { - "type": "integer" + "type": "integer", + "format": "int64" }, "collectionFormat": "csv", "description": "Comma-separated array of time IDs (25 Limit)", @@ -624,12 +625,6 @@ "Map": { "type": "object", "properties": { - "creator": { - "type": "string" - }, - "date": { - "type": "string" - }, "display_name": { "type": "string" }, @@ -638,6 +633,9 @@ }, "id": { "type": "integer" + }, + "thumbnail": { + "type": "integer" } } }, diff --git a/docs/swagger.yaml b/docs/swagger.yaml index 1107f02..6a8bb2b 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -7,16 +7,14 @@ definitions: type: object Map: properties: - creator: - type: string - date: - type: string display_name: type: string game_id: type: integer id: type: integer + thumbnail: + type: integer type: object PagedResponse-Map: properties: @@ -418,6 +416,7 @@ paths: description: Comma-separated array of time IDs (25 Limit) in: query items: + format: int64 type: integer name: ids required: true