{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-structure/flickr-stat-list-structure.json", "name": "StatList", "description": "StatList schema from Flickr API", "type": "object", "properties": { "stats": { "type": "object", "properties": { "views": { "type": "int32", "example": 1842 }, "comments": { "type": "int32", "example": 12 }, "favorites": { "type": "int32", "example": 47 } } }, "stat": { "type": "array", "items": { "type": "object", "properties": { "date": { "type": "string", "example": "2026-04-30" }, "views": { "type": "int32", "example": 1842 }, "comments": { "type": "int32", "example": 12 }, "favorites": { "type": "int32", "example": 47 } } } } } }