OBJECT

RateLimitSpecification

link GraphQL Schema definition

1type RateLimitSpecification {
2# Type of the window. See enum for more details
3type: RateLimitType!
4
5# The maximum number of points that are allowed for the window
6quota: Int!
7
8# Length of the window. See enum for more details
9interval: RateLimitInterval!
10
11}