Flickr · JSON Structure

Flickr Tag List Structure

TagList schema from Flickr API

Type: object Properties: 3
PhotographyPhotosSocial MediaPublic APIs

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

Properties

period count tag

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-tag-list-structure.json",
  "name": "TagList",
  "description": "TagList schema from Flickr API",
  "type": "object",
  "properties": {
    "period": {
      "type": "string",
      "example": "week"
    },
    "count": {
      "type": "int32",
      "example": 200
    },
    "tag": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "_content": {
            "type": "string",
            "example": "100"
          },
          "score": {
            "type": "int32",
            "example": 87
          },
          "thm_data": {
            "type": "object",
            "additionalProperties": true,
            "example": {}
          }
        }
      }
    }
  }
}