Flickr · JSON Structure

Flickr Collection Structure

Collection schema from Flickr API

Type: object Properties: 5
PhotographyPhotosSocial MediaPublic APIs

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

Properties

id name description iconlarge set

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-collection-structure.json",
  "name": "Collection",
  "description": "Collection schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "name": {
      "type": "string",
      "example": "Golden Gate Sunset"
    },
    "description": {
      "type": "string",
      "example": "Detailed photo metadata."
    },
    "iconlarge": {
      "type": "uri",
      "example": "https://www.flickr.com/services/api/"
    },
    "set": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "example": "52345678901"
          },
          "name": {
            "type": "string",
            "example": "Golden Gate Sunset"
          }
        }
      }
    }
  }
}