Flickr · JSON Structure

Flickr Person Structure

Person schema from Flickr API

Type: object Properties: 7
PhotographyPhotosSocial MediaPublic APIs

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

Properties

id nsid username realname location photosurl profileurl

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-person-structure.json",
  "name": "Person",
  "description": "Person schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "nsid": {
      "type": "string",
      "example": "12345678@N00"
    },
    "username": {
      "type": "string",
      "example": "shutterbug"
    },
    "realname": {
      "type": "string",
      "example": "Jane Photographer"
    },
    "location": {
      "type": "string",
      "example": "San Francisco, CA"
    },
    "photosurl": {
      "type": "uri",
      "example": "https://www.flickr.com/photos/12345678@N00/"
    },
    "profileurl": {
      "type": "uri",
      "example": "https://www.flickr.com/people/12345678@N00/"
    }
  }
}