Flickr · JSON Structure

Flickr Contact Structure

Contact schema from Flickr API

Type: object Properties: 7
PhotographyPhotosSocial MediaPublic APIs

Contact 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

nsid username iconserver realname friend family ignored

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-contact-structure.json",
  "name": "Contact",
  "description": "Contact schema from Flickr API",
  "type": "object",
  "properties": {
    "nsid": {
      "type": "string",
      "example": "12345678@N00"
    },
    "username": {
      "type": "string",
      "example": "shutterbug"
    },
    "iconserver": {
      "type": "string",
      "example": "7402"
    },
    "realname": {
      "type": "string",
      "example": "Jane Photographer"
    },
    "friend": {
      "type": "int32",
      "example": 1
    },
    "family": {
      "type": "int32",
      "example": 0
    },
    "ignored": {
      "type": "int32",
      "example": 0
    }
  }
}