GitHub · Schema

rate-limit

rate-limit from GitHub API

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
limit integer
remaining integer
reset integer
used integer
View JSON Schema on GitHub

JSON Schema

github-rate-limit--rate-limit-schema.json Raw ↑
{
  "$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"
  ]
}