Flickr · JSON Structure

Flickr License List Structure

LicenseList schema from Flickr API

Type: object Properties: 1
PhotographyPhotosSocial MediaPublic APIs

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

Properties

license

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-license-list-structure.json",
  "name": "LicenseList",
  "description": "LicenseList schema from Flickr API",
  "type": "object",
  "properties": {
    "license": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "int32",
            "example": "52345678901"
          },
          "name": {
            "type": "string",
            "example": "Bay Area Photographers"
          },
          "url": {
            "type": "uri",
            "example": "https://www.flickr.com/galleries/12345678@N00/72157712345/"
          }
        }
      }
    }
  }
}