Flickr · Schema
GalleryList
GalleryList schema from Flickr API
PhotographyPhotosSocial MediaPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| page | integer | |
| pages | integer | |
| total | integer | |
| gallery | 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-gallery-list-schema.json",
"title": "GalleryList",
"description": "GalleryList schema from Flickr API",
"type": "object",
"properties": {
"page": {
"type": "integer",
"example": 1
},
"pages": {
"type": "integer",
"example": 12
},
"total": {
"type": "integer",
"example": 1183
},
"gallery": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "52345678901"
},
"url": {
"type": "string",
"format": "uri",
"example": "https://www.flickr.com/galleries/12345678@N00/72157712345/"
},
"owner": {
"type": "string",
"example": "12345678@N00"
},
"date_create": {
"type": "string",
"example": "1715000000"
},
"count_photos": {
"type": "integer",
"example": 18
},
"count_videos": {
"type": "integer",
"example": 0
}
}
}
}
}
}