diff --git a/Sources/DiscogsService/openapi.yaml b/Sources/DiscogsService/openapi.yaml index 4bae986e4..3d1e82d4c 100644 --- a/Sources/DiscogsService/openapi.yaml +++ b/Sources/DiscogsService/openapi.yaml @@ -658,6 +658,31 @@ components: schema: type: string example: ; rel="next", ; rel="last" + required: true + RateLimit: + description: A total number of requests that can be made in a minute window. + schema: + type: integer + minimum: 25 + maximum: 60 + example: 60 + required: true + RateLimitRemaining: + description: A number of remaining requests that can be made in an existing rate limit window. + schema: + type: integer + minimum: 0 + maximum: 60 + example: 59 + required: true + RateLimitUsed: + description: A number of requests that have been made in an existing rate limit window. + schema: + type: integer + minimum: 0 + maximum: 60 + example: 1 + required: true parameters: ArtistId: name: artist_id