Group schema from Flickr API
{ "$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 } } }