Flickr · Schema

Topic

Topic schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
id string
subject string
author string
author_name string
datecreate string
count_replies integer
View JSON Schema on GitHub

JSON Schema

flickr-topic-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-topic-schema.json",
  "title": "Topic",
  "description": "Topic schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "subject": {
      "type": "string",
      "example": "Tips for sunset photography"
    },
    "author": {
      "type": "string",
      "example": "12345678@N00"
    },
    "author_name": {
      "type": "string",
      "example": "shutterbug"
    },
    "datecreate": {
      "type": "string",
      "example": "1715000000"
    },
    "count_replies": {
      "type": "integer",
      "example": 7
    }
  }
}