Flickr · JSON Structure

Flickr Stat List Structure

StatList schema from Flickr API

Type: object Properties: 2
PhotographyPhotosSocial MediaPublic APIs

StatList is a JSON Structure definition published by Flickr, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

stats stat

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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
          }
        }
      }
    }
  }
}