Flickr · Schema

Group

Group schema from Flickr API

PhotographyPhotosSocial MediaPublic APIs

Properties

Name Type Description
id string
nsid string
name string
members integer
pool_count integer
topic_count integer
View JSON Schema on GitHub

JSON Schema

flickr-group-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-group-schema.json",
  "title": "Group",
  "description": "Group schema from Flickr API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "52345678901"
    },
    "nsid": {
      "type": "string",
      "example": "12345678@N00"
    },
    "name": {
      "type": "string",
      "example": "Bay Area Photographers"
    },
    "members": {
      "type": "integer",
      "example": 18324
    },
    "pool_count": {
      "type": "integer",
      "example": 942113
    },
    "topic_count": {
      "type": "integer",
      "example": 8421
    }
  }
}