Flickr · JSON Structure

Flickr Profile Structure

Profile schema from Flickr API

Type: object Properties: 9
PhotographyPhotosSocial MediaPublic APIs

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

Properties

id first_name last_name join_date occupation city country hometown website

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-profile-structure.json",
  "name": "Profile",
  "description": "Profile schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "first_name": {
      "type": "string",
      "example": "Jane"
    },
    "last_name": {
      "type": "string",
      "example": "Photographer"
    },
    "join_date": {
      "type": "string",
      "example": "2008-06-15"
    },
    "occupation": {
      "type": "string",
      "example": "Photographer"
    },
    "city": {
      "type": "string",
      "example": "San Francisco"
    },
    "country": {
      "type": "string",
      "example": "USA"
    },
    "hometown": {
      "type": "string",
      "example": "Portland"
    },
    "website": {
      "type": "uri",
      "example": "https://janephotographer.example.com"
    }
  }
}