Flickr · Schema

PushTopicList

PushTopicList schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
topic array
View JSON Schema on GitHub

JSON Schema

flickr-push-topic-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-push-topic-list-schema.json",
  "title": "PushTopicList",
  "description": "PushTopicList schema from Flickr API",
  "type": "object",
  "properties": {
    "topic": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "example": "Bay Area Photographers"
          }
        }
      }
    }
  }
}