{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-structure/github-rate-limit--rate-limit-structure.json", "name": "rate-limit", "description": "rate-limit from GitHub API", "type": "object", "properties": { "limit": { "type": "int32", "example": 42 }, "remaining": { "type": "int32", "example": 42 }, "reset": { "type": "int32", "example": 42 }, "used": { "type": "int32", "example": 42 } }, "required": [ "limit", "remaining", "reset", "used" ] }