{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-structure/flickr-camera-list-structure.json", "name": "CameraList", "description": "CameraList schema from Flickr API", "type": "object", "properties": { "camera": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "example": "52345678901" }, "name": { "type": "string", "example": "Bay Area Photographers" }, "details": { "type": "object", "additionalProperties": true, "example": {} } } } } } }