Properties
| Name | Type | Description |
|---|---|---|
| nsid | string | |
| username | string | |
| iconserver | string | |
| realname | string | |
| friend | integer | |
| family | integer | |
| ignored | integer |
JSON Schema
{
"$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
}
}
}