Flickr · Schema
TagClusterList
TagClusterList schema from Flickr API
PhotographyPhotosSocial MediaPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| source | string | |
| total | integer | |
| cluster | 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-tag-cluster-list-schema.json",
"title": "TagClusterList",
"description": "TagClusterList schema from Flickr API",
"type": "object",
"properties": {
"source": {
"type": "string",
"example": "https://live.staticflickr.com/65535/52345678901_abc1234def_o.jpg"
},
"total": {
"type": "integer",
"example": 1183
},
"cluster": {
"type": "array",
"items": {
"type": "object",
"properties": {
"total": {
"type": "integer",
"example": 1183
},
"tag": {
"type": "array",
"items": {
"type": "object",
"properties": {
"_content": {
"type": "string",
"example": "100"
},
"score": {
"type": "integer",
"example": 87
},
"thm_data": {
"type": "object",
"additionalProperties": true,
"example": {}
}
}
}
}
}
}
}
}
}