Flickr · Schema

BrandList

BrandList schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
brand array
View JSON Schema on GitHub

JSON Schema

flickr-brand-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-schema/flickr-brand-list-schema.json",
  "title": "BrandList",
  "description": "BrandList schema from Flickr API",
  "type": "object",
  "properties": {
    "brand": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "example": "52345678901"
          },
          "name": {
            "type": "string",
            "example": "Bay Area Photographers"
          }
        }
      }
    }
  }
}