Flickr · JSON Structure

Flickr Gallery Structure

Gallery schema from Flickr API

Type: object Properties: 6
PhotographyPhotosSocial MediaPublic APIs

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

Properties

id url owner date_create count_photos count_videos

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-gallery-structure.json",
  "name": "Gallery",
  "description": "Gallery schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "url": {
      "type": "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": "int32",
      "example": 18
    },
    "count_videos": {
      "type": "int32",
      "example": 0
    }
  }
}