{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/api-shield_traffic_stats", "title": "api-shield_traffic_stats", "properties": { "traffic_stats": { "properties": { "last_updated": { "$ref": "#/components/schemas/api-shield_schemas-timestamp" }, "period_seconds": { "description": "The period in seconds these statistics were computed over", "example": 3600, "readOnly": true, "type": "integer" }, "requests": { "description": "The average number of requests seen during this period", "example": 1987.06, "format": "float", "readOnly": true, "type": "number" } }, "required": [ "period_seconds", "requests", "last_updated" ], "type": "object" } }, "readOnly": true, "type": "object" }