{ "$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-overview-schema.json", "title": "rate-limit-overview", "description": "Rate Limit Overview", "type": "object", "properties": { "resources": { "type": "object", "properties": { "core": { "$ref": "#/components/schemas/rate-limit" }, "graphql": { "$ref": "#/components/schemas/rate-limit" }, "search": { "$ref": "#/components/schemas/rate-limit" }, "code_search": { "$ref": "#/components/schemas/rate-limit" }, "source_import": { "$ref": "#/components/schemas/rate-limit" }, "integration_manifest": { "$ref": "#/components/schemas/rate-limit" }, "code_scanning_upload": { "$ref": "#/components/schemas/rate-limit" }, "actions_runner_registration": { "$ref": "#/components/schemas/rate-limit" }, "scim": { "$ref": "#/components/schemas/rate-limit" } }, "required": [ "core", "search" ] }, "rate": { "$ref": "#/components/schemas/rate-limit" } }, "required": [ "rate", "resources" ] }