Flickr · Schema

TagList

TagList schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
period string
count integer
tag array
View JSON Schema on GitHub

JSON Schema

flickr-tag-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-schema/flickr-tag-list-schema.json",
  "title": "TagList",
  "description": "TagList schema from Flickr API",
  "type": "object",
  "properties": {
    "period": {
      "type": "string",
      "example": "week"
    },
    "count": {
      "type": "integer",
      "example": 200
    },
    "tag": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "_content": {
            "type": "string",
            "example": "100"
          },
          "score": {
            "type": "integer",
            "example": 87
          },
          "thm_data": {
            "type": "object",
            "additionalProperties": true,
            "example": {}
          }
        }
      }
    }
  }
}