Flickr · Schema

TopicReply

TopicReply schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
id string
author string
message object
datecreate string
View JSON Schema on GitHub

JSON Schema

flickr-topic-reply-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-reply-schema.json",
  "title": "TopicReply",
  "description": "TopicReply schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "author": {
      "type": "string",
      "example": "12345678@N00"
    },
    "message": {
      "type": "object",
      "properties": {
        "_content": {
          "type": "string",
          "example": "100"
        }
      }
    },
    "datecreate": {
      "type": "string",
      "example": "1715000000"
    }
  }
}