Flickr · Schema

Contact

Contact schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
nsid string
username string
iconserver string
realname string
friend integer
family integer
ignored integer
View JSON Schema on GitHub

JSON Schema

flickr-contact-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-contact-schema.json",
  "title": "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": "integer",
      "example": 1
    },
    "family": {
      "type": "integer",
      "example": 0
    },
    "ignored": {
      "type": "integer",
      "example": 0
    }
  }
}