NGINX · Schema

HTTP Requests

NginxHTTPRequests schema from NGINX Plus REST API

API GatewayCachingCloud NativeLoad BalancerOpen SourceReverse ProxyWeb Server

Properties

Name Type Description
total integer The total number of client requests.
current integer The current number of client requests.
View JSON Schema on GitHub

JSON Schema

plus-http-api-nginx-http-requests-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nginx/refs/heads/main/json-schema/plus-http-api-nginx-http-requests-schema.json",
  "title": "HTTP Requests",
  "description": "NginxHTTPRequests schema from NGINX Plus REST API",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "The total number of client requests.",
      "example": 98765
    },
    "current": {
      "type": "integer",
      "description": "The current number of client requests.",
      "example": 3
    }
  },
  "example": {
    "total": 10624511,
    "current": 4
  }
}