rate-limit from GitHub API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-rate-limit--rate-limit-schema.json", "title": "rate-limit", "description": "rate-limit from GitHub API", "type": "object", "properties": { "limit": { "type": "integer", "example": 42 }, "remaining": { "type": "integer", "example": 42 }, "reset": { "type": "integer", "example": 42 }, "used": { "type": "integer", "example": 42 } }, "required": [ "limit", "remaining", "reset", "used" ] }