Sha256: 51d78041e5deeba2a178e76255b2403ab07de1b36146ea43c4ca855277f2df44

Contents?: true

Size: 927 Bytes

Versions: 3

Compression:

Stored size: 927 Bytes

Contents

{
  "$schema"     : "http://json-schema.org/draft-04/schema#",
  "type"        : "object",
  "title"       : "rate_limit",
  "description" : "Overall, remaining rate limits and the time frame until the reset. Atm. there is only one rate limit returned in the response array of the index request",
  "properties"  : {
    "limit" : {
      "description" : "The rate limit ceiling for the given request in a [time window]",
      "type"        : "integer",
      "readOnly"    : true
    },
    "remaining" : {
      "description" : "The number of requests left for the [time window]",
      "type"        : "integer",
      "readOnly"    : true
    },
    "reset" : {
      "description" : "The remaining window before the rate limit resets in e.g. UTC epoch seconds",
      "type"        : "integer",
      "readOnly"    : true
    }
  },
  "links" : [
    {
      "rel"  : "instances",
      "href" : "rate_limit"
    }
  ]
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fidor_schema-0.10.16 schema/v1.0/rate_limit.json
fidor_schema-0.10.15 schema/v1.0/rate_limit.json
fidor_schema-0.10.14 schema/v1.0/rate_limit.json