APIs.io Engineering Platform · Schema
Rate Limit Overview
Rate Limit Overview
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| resources | object | |
| rate | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/rate-limit-overview",
"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"
]
}