APIs.io Engineering Platform · Schema
zone-analytics-api_requests
Breakdown of totals for requests.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| all | integer | Total number of requests served. |
| cached | integer | Total number of cached requests served. |
| content_type | object | A variable list of key/value pairs where the key represents the type of content served, and the value is the number of requests. |
| country | object | A variable list of key/value pairs where the key is a two-digit country code and the value is the number of requests served to that country. |
| http_status | object | Key/value pairs where the key is a HTTP status code and the value is the number of requests served with that code. |
| ssl | object | A break down of requests served over HTTPS. |
| ssl_protocols | object | A breakdown of requests by their SSL protocol. |
| uncached | integer | Total number of requests served from the origin. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/zone-analytics-api_requests",
"title": "zone-analytics-api_requests",
"description": "Breakdown of totals for requests.",
"properties": {
"all": {
"description": "Total number of requests served.",
"type": "integer"
},
"cached": {
"description": "Total number of cached requests served.",
"type": "integer"
},
"content_type": {
"description": "A variable list of key/value pairs where the key represents the type of content served, and the value is the number of requests.",
"example": {
"css": 15343,
"gif": 23178,
"html": 1234213.0,
"javascript": 318236,
"jpeg": 1982048.0
},
"type": "object"
},
"country": {
"description": "A variable list of key/value pairs where the key is a two-digit country code and the value is the number of requests served to that country.",
"example": {
"AG": 37298,
"GI": 293846,
"US": 4181364.0
},
"type": "object"
},
"http_status": {
"additionalProperties": true,
"description": "Key/value pairs where the key is a HTTP status code and the value is the number of requests served with that code.",
"example": {
"200": 13496983.0,
"301": 283,
"400": 187936,
"402": 1828,
"404": 1293
},
"type": "object"
},
"ssl": {
"description": "A break down of requests served over HTTPS.",
"properties": {
"encrypted": {
"description": "The number of requests served over HTTPS.",
"type": "integer"
},
"unencrypted": {
"description": "The number of requests served over HTTP.",
"type": "integer"
}
},
"type": "object"
},
"ssl_protocols": {
"description": "A breakdown of requests by their SSL protocol.",
"properties": {
"TLSv1": {
"description": "The number of requests served over TLS v1.0.",
"type": "integer"
},
"TLSv1.1": {
"description": "The number of requests served over TLS v1.1.",
"type": "integer"
},
"TLSv1.2": {
"description": "The number of requests served over TLS v1.2.",
"type": "integer"
},
"TLSv1.3": {
"description": "The number of requests served over TLS v1.3.",
"type": "integer"
},
"none": {
"description": "The number of requests served over HTTP.",
"type": "integer"
}
},
"type": "object"
},
"uncached": {
"description": "Total number of requests served from the origin.",
"type": "integer"
}
},
"type": "object"
}