Properties
| Name | Type | Description |
|---|---|---|
| stats | object | |
| stat | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-schema/flickr-stat-list-schema.json",
"title": "StatList",
"description": "StatList schema from Flickr API",
"type": "object",
"properties": {
"stats": {
"type": "object",
"properties": {
"views": {
"type": "integer",
"example": 1842
},
"comments": {
"type": "integer",
"example": 12
},
"favorites": {
"type": "integer",
"example": 47
}
}
},
"stat": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"example": "2026-04-30"
},
"views": {
"type": "integer",
"example": 1842
},
"comments": {
"type": "integer",
"example": 12
},
"favorites": {
"type": "integer",
"example": 47
}
}
}
}
}
}