Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| primary | string | |
| owner | string | |
| title | object | |
| description | object | |
| photos | integer | |
| videos | 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-photoset-schema.json",
"title": "Photoset",
"description": "Photoset schema from Flickr API",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "52345678901"
},
"primary": {
"type": "string",
"example": "52345678901"
},
"owner": {
"type": "string",
"example": "12345678@N00"
},
"title": {
"type": "object",
"properties": {
"_content": {
"type": "string",
"example": "100"
}
}
},
"description": {
"type": "object",
"properties": {
"_content": {
"type": "string",
"example": "100"
}
}
},
"photos": {
"type": "integer",
"example": 248
},
"videos": {
"type": "integer",
"example": 3
}
}
}